Skip to content

Commit

Permalink
woops
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rbed committed Aug 27, 2024
1 parent 61af4fb commit 58a045a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/solver/main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function symbolic_solve(expr, x::T; dropmultiplicity = true, warns = true) where
sols = []
if expr_univar
sols = check_poly_inunivar(expr, x) ?
solve_univar(expr, x, dropmultiplicity=dropmultiplicity, warns=warns) :
solve_univar(expr, x, dropmultiplicity=dropmultiplicity) :
ia_solve(expr, x, warns=warns)
isequal(sols, nothing) && return nothing
else
Expand Down Expand Up @@ -238,7 +238,7 @@ implemented in the function `get_roots` and its children.
# Examples
"""
function solve_univar(expression, x; dropmultiplicity = true)
function solve_univar(expression, x; dropmultiplicity=true)
args = []
mult_n = 1
expression = unwrap(expression)
Expand Down

0 comments on commit 58a045a

Please sign in to comment.