|  | Root | 
 Inheritance Hierarchy
Inheritance Hierarchy Syntax
SyntaxThe RootFinderBase type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | RootFinderBase | For internal use only. | 
|  | RootFinderBase(Double, Int32) | Constructs a RootFinderBase instance with the given error tolerance and maximum number of iterations. | 
 Properties
Properties| Name | Description | |
|---|---|---|
|   | DefaultMaxIterations | Gets and sets the default maximum number of iterations. | 
|   | DefaultTolerance | Gets and sets the default error tolerance. | 
|  | Error | Gets the error associated with the root just computed. | 
|  | Iterations | Gets the number of iterations used computing the last root. | 
|  | MaxIterations | Gets and sets the maximum number of iterations used in finding roots. | 
|  | MaxIterationsMet | Returns true if the root just computed stopped because the maximum number of iterations was reached; otherwise, false. | 
|  | Tolerance | Gets and sets the error tolerance used in finding roots. | 
|  | ToleranceMet | Returns true if the root just computed stopped because the error tolerance was reached; otherwise, false. | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | BracketRoot | Attempts to bracket a root given the function and an initial guess near a suspected root. | 
|  | Clone | Returns a deep copy of this root finder. | 
 Fields
Fields| Name | Description | |
|---|---|---|
|   | DEFAULT_MAX_ITER | The default maximum number of iterations. | 
|   | DEFAULT_TOLERANCE | The default error tolerance. | 
|  | error_ | The current error. | 
|  | iter_ | The current number of iterations performed. | 
|  | max_ | The maximum number of iterations. | 
|  | tolerance_ | The error tolerance. | 
 See Also
See Also