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.
2 parents 9ea899b + 9364f7c commit 08b0456Copy full SHA for 08b0456
src/graph_engine.jl
@@ -917,12 +917,8 @@ function Base.:(==)(left::VariableRef, right)
917
end
918
Base.:(==)(left, right::VariableRef) = right == left
919
920
-Base.:(>)(left::VariableRef, right) = left == right
921
-Base.:(>)(left, right::VariableRef) = left == right
922
Base.:(<)(left::VariableRef, right) = left == right
923
Base.:(<)(left, right::VariableRef) = left == right
924
-Base.:(>=)(left::VariableRef, right) = left == right
925
-Base.:(>=)(left, right::VariableRef) = left == right
926
Base.:(<=)(left::VariableRef, right) = left == right
927
Base.:(<=)(left, right::VariableRef) = left == right
928
0 commit comments