-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
HomotopyContinuation.jl does not deal well with Julia's BigFloat type, see
JuliaHomotopyContinuation/HomotopyContinuation.jl#528
Unfortunately these can occur in the poly_to_expr method. It might be worthwhile to change the line
+([*([Rational(c), [v[i]^e for (i,e) in enumerate(a)]...]...) for (c,a) in poly ]...)
to
+([*([convert(Float64, Rational(c)), [v[i]^e for (i,e) in enumerate(a)]...]...) for (c,a) in poly ]...)
to work around this problem here. What do you think?
Metadata
Metadata
Assignees
Labels
No labels