Class HouseholderParameters
- java.lang.Object
-
- org.orekit.control.heuristics.lambert.HouseholderParameters
-
public class HouseholderParameters extends Object
Class holding parameters for a Householder solver.- Since:
- 14.0
- Author:
- Rafael Ayala
-
-
Constructor Summary
Constructors Constructor Description HouseholderParameters(int maxIterations, double atol, double rtol)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetAbsoluteTolerance()Get the absolute tolerance.intgetMaxIterations()Get the maximum number of iterations.doublegetRelativeTolerance()Get the relative tolerance.
-
-
-
Method Detail
-
getMaxIterations
public int getMaxIterations()
Get the maximum number of iterations.- Returns:
- maximum number of iterations
-
getAbsoluteTolerance
public double getAbsoluteTolerance()
Get the absolute tolerance.- Returns:
- absolute tolerance
-
getRelativeTolerance
public double getRelativeTolerance()
Get the relative tolerance.- Returns:
- relative tolerance
-
-