We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LaguerreSolver
1 parent 1d6df19 commit 71f935cCopy full SHA for 71f935c
symja_android_library/matheclipse-core/src/main/java/org/matheclipse/core/builtin/RootsFunctions.java
@@ -1025,9 +1025,10 @@ private static org.hipparchus.complex.Complex[] allComplexRootsLaguerre(
1025
LaguerreSolver solver = new LaguerreSolver(Config.DEFAULT_ROOTS_CHOP_DELTA);
1026
// see https://github.com/Hipparchus-Math/hipparchus/issues/177 for initial value
1027
// https://stackoverflow.com/q/65960318
1028
- return solver.solveAllComplex(coefficients, 1.0);
+ return solver.solveAllComplex(coefficients, 100_000, 1.0);
1029
} catch (MathRuntimeException mre) {
1030
- //
+ // mre.printStackTrace();
1031
+ // org.hipparchus.exception.MathIllegalStateException: maximal count (100,000) exceeded
1032
}
1033
return null;
1034
0 commit comments