Skip to content

Commit

Permalink
simpler fix
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rbed committed Aug 25, 2024
1 parent 6a7bb74 commit 048d7f0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/solver/main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ function symbolic_solve(expr, x::T; dropmultiplicity = true, warns = true) where
isequal(sols, nothing) && return nothing
for sol in sols
for var in x
root = get(sol, var, missing)
if !isequal(wrap(root), missing)
if haskey(sol, var)
sol[var] = postprocess_root(sol[var])
end
end
Expand Down

0 comments on commit 048d7f0

Please sign in to comment.