Regula Falsi Variant Enumeration
Specifies the variant of the Regula Falsi method to use.
Definition
Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.4
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.4
public enum RegulaFalsiVariant
Members
Standard | 0 | The standard Regula Falsi (false position) method. |
Illinois | 1 | The Illinois variant, which halves the function value at the unchanged bound to improve convergence. |
Pegasus | 2 | The Pegasus variant, which scales the function value at the unchanged bound based on the ratio of function values. |
AndersonBjork | 3 | The Anderson-Björk variant, which dynamically adjusts the function value at the unchanged bound for faster convergence. |