Skip to content

Commit

Permalink
fix typos in free_symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Jul 24, 2024
1 parent 14c3f62 commit 9d429a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Initialization/init_SymEngine.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ function free_symbols(::Expr, ::Type{<:LazySet}) end # COV_EXCL_LINE

function free_symbols(expr::Expr)
if _is_hyperplane(expr)
return free_symbols(expr, HyperPlane)
return free_symbols(expr, Hyperplane)
elseif _is_halfspace(expr)
return free_symbols(expr, Halfspace)
return free_symbols(expr, HalfSpace)
else
error("the free symbols for the expression $(expr) is not implemented")
end
Expand Down

0 comments on commit 9d429a9

Please sign in to comment.