Skip to content

Commit c6b3999

Browse files
committed
Also register <
1 parent 740e711 commit c6b3999

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/methods.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ Base.real(s::Symbolic{<:Number}) = term(real, s)
109109
# binary ops that return Bool
110110
for (f, Domain) in [(==) => Number, (!=) => Number,
111111
(<=) => Real, (>=) => Real,
112-
(isless) => Real, (> ) => Real,
112+
(isless) => Real,
113+
(<) => Real, (> ) => Real,
113114
(& ) => Bool, (| ) => Bool,
114115
xor => Bool]
115116
@eval begin

0 commit comments

Comments
 (0)