BrentFindRootCheckInitialBracketingPoints Method (Double, Double) | 
 
            Checks whether the given variable values will produce a valid initial bracketing interval.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods.Advanced
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool CheckInitialBracketingPoints(
	double a,
	double c
)
Public Function CheckInitialBracketingPoints ( 
	a As Double,
	c As Double
) As Boolean
public:
bool CheckInitialBracketingPoints(
	double a, 
	double c
)
member CheckInitialBracketingPoints : 
        a : float * 
        c : float -> bool 
Parameters
- a
 - Type: SystemDouble
The first bracketing value of the variable. - c
 - Type: SystemDouble
The second bracketing value of the variable 
Return Value
Type: 
Boolean if the values will produce a valid interval; otherwise 
.
            If the value is false, it may be caused by either 
a or 
c
            already representing a root.
            
See Also