Hello, I do not understand why HC is unable to solve the system x = 0.
Solving it
using HomotopyContinuation
@var x
system = System([x])
res = solve(system)
results in 0 solutions. Changing it to x+eps()=0 fixes the issue. Is this something homotopy methods should not be expected to solve, or is this a bug? Should I randomly add tiny noise to my systems?
Thanks
- HomotopyContinuation version 2.8.2
- Julia version 1.8.5
Hello, I do not understand why HC is unable to solve the system
x = 0.Solving it
results in 0 solutions. Changing it to
x+eps()=0fixes the issue. Is this something homotopy methods should not be expected to solve, or is this a bug? Should I randomly add tiny noise to my systems?Thanks