You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/endgame_tracker.jl
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,12 @@ These parameters control the behaviour during the endgame.
35
35
endgame strategy is considered to be applied.
36
36
* `min_coord_growth = 100`: The minimal relative growth of a coordinate necessary to
37
37
to be considered going to infininity (resp. zero).
38
+
* `singular_min_accuracy = 1e-6`: A solution can be treated with a singular endgame method only if its [`accuracy`](@ref) is below this threshold. Otherwise, the solution will either be refined or labeled as unsuccessfully terminated.
38
39
* `val_at_infinity_tol = 1e-3`: Tolerance on the valuation which has to be
39
40
satisfied before a path is considered to diverge / go to infinity.
40
41
* `val_finite_tol = 1e-3`: Tolerance on the valuation which has to be satisfied before the endgame is started.
41
42
* `sing_cond = 1e14`: value for the condition number above which a solution is considered singular.
42
-
* `sing_accuracy = 1e-12`: value for the accuracy number above which a solution is considered singular.
43
+
* `sing_accuracy = 1e-12`: value for the [`accuracy`](@ref) above which a solution is considered singular.
43
44
* `scaling_threshold = -30.0`: Row scaling of matrices is only applied to rows with `e < scaling_threshold`, where is the norm of the row is estimated to be `2^e`. See [`skeel_row_scaling`](@skeel_row_scaling) for details.
44
45
* `refine_steps = 3`: number of steps for refining solutions at the end.
0 commit comments