We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b9d201 commit dae42e5Copy full SHA for dae42e5
src/utils/utils.jl
@@ -308,7 +308,7 @@ function mutual_crs(a, b)
308
return GI.crs(a)
309
elseif isnothing(GI.crs(a)) && !isnothing(GI.crs(b))
310
return GI.crs(b)
311
- elseif GI.crs(a) != nothing && GI.crs(b) == nothing
+ elseif !isnothing(GI.crs(a)) && isnothing(GI.crs(b))
312
313
else
314
return nothing
0 commit comments