JuliaNLSolvers / NLsolve.jl

Julia solvers for systems of nonlinear equations and mixed complementarity problems

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Solver slow when using BigFloat

shakisparki opened this issue · comments

I found out that in scenarios where I need more machine precision in order to meet tolerance values, and I use the BigFloat datatype, the solver becomes much much slower (takes longer for each iteration) especially as the number of unknowns increases.

BigFloats are slow, yes. Not much nlsolve can do there.

Try ArbFloat, double-double approaches or similar. I can write a tutorial. I don’t know for a fact that all extended precision types work, but if they don’t, I’ll consider it a bug.

OK, I will look into using either. Thanks