A transformation checker can stop the iteration depending on some conditions.
More...
|
| TransformationChecker () |
| Construct without parameter.
|
|
| TransformationChecker (const std::string &className, const ParametersDoc paramsDoc, const Parameters ¶ms) |
| Construct with parameters.
|
|
virtual | ~TransformationChecker () |
| Destructor.
|
|
virtual void | init (const TransformationParameters ¶meters, bool &iterate)=0 |
| Init, set iterate to false if iteration should stop.
|
|
virtual void | check (const TransformationParameters ¶meters, bool &iterate)=0 |
| Set iterate to false if iteration should stop.
|
|
const Vector & | getLimits () const |
| Return the value of limits involved in conditions to stop ICP loop.
|
|
const Vector & | getConditionVariables () const |
| Return the values of variables involved in conditions to stop ICP loop.
|
|
const StringVector & | getLimitNames () const |
| Return the names of limits involved in conditions to stop ICP loop.
|
|
const StringVector & | getConditionVariableNames () const |
| Return the names of variables involved in conditions to stop ICP loop.
|
|
| Parametrizable () |
| Construct a documentation of parameters from a description in the source. More...
|
|
| Parametrizable (const std::string &className, const ParametersDoc paramsDoc, const Parameters ¶ms) |
| Construct with documented parameters.
|
|
virtual | ~Parametrizable () |
| Virtual destructor, do nothing.
|
|
std::string | getParamValueString (const std::string ¶mName) |
| Get the value of a parameter, as a string.
|
|
template<typename S > |
S | get (const std::string ¶mName) |
| Return the value of paramName, lexically-casted to S.
|
|
template<typename T>
struct PointMatcher< T >::TransformationChecker
A transformation checker can stop the iteration depending on some conditions.
For example, a condition can be the number of times the loop was executed, or it can be related to the matching error. Because the modules can be chained, we defined that the relation between modules must agree through an OR-condition, while all AND-conditions are defined within a single module.