Interface MatchMethod
-
- All Known Implementing Classes:
AbstractMatchMethod
,MatchMethodJacobian
,MatchMethodLmdif
,MatchMethodMigrad
,MatchMethodSimplex
public interface MatchMethod
this is the general type of a method for matching in madx.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MatchMethod.AlgorithmType
Available MadX supported matching algorithms which define the Type of theMatchMethod
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatchMethod.AlgorithmType
getAlgorithmType()
int
getCalls()
double
getTolerance()
-
-
-
Method Detail
-
getAlgorithmType
MatchMethod.AlgorithmType getAlgorithmType()
- Returns:
- the
MatchMethod.AlgorithmType
of the MatchMethod
-
getCalls
int getCalls()
- Returns:
- the number of calls during the matching
-
getTolerance
double getTolerance()
- Returns:
- The desired tolerance for the minimum .
-
-