Interface IterationManager
-
- All Known Implementing Classes:
IterationManagerImpl
public interface IterationManagerkeeps track of all actually calculated iterations and stores some statistics values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IterationData>getIterations()intgetLastIterationNumber()voidrecordIteration()adds a new iteration entry from the actual state of the given sensitivity matrix managervoidreset()clears all the iterations
-
-
-
Method Detail
-
getIterations
java.util.List<IterationData> getIterations()
- Returns:
- all the iterations
-
reset
void reset()
clears all the iterations
-
recordIteration
void recordIteration()
adds a new iteration entry from the actual state of the given sensitivity matrix manager
-
getLastIterationNumber
int getLastIterationNumber()
- Returns:
- the number of the last iterations. This can be -1, if no iteration was recorded.
-
-