Interface for object making diagnostics about common setup errors.
virtual void diagnose |
( |
| ) |
const |
|
pure virtual |
Check for common problems.
This method serves as the entry point for diagnosing common problems in object setup. The idea behind this method is that while some errors could be detected at construction time, i.e., when the object's constructor is called, it doesn't hinder other objects' creation. We therefore would like to defer the detection of errors until after all objects have been created, collect all errors at once, and present the user with a complete understanding of all errors encountered.
Note, however, if an error could interfere with other objects' creation, it should be raised right away inside the constructor, instead of inside this method.
Implemented in BackwardEulerTimeIntegration< T >, BackwardEulerTimeIntegration< Scalar >, BackwardEulerTimeIntegration< Scalar >, BackwardEulerTimeIntegration< SR2 >, BackwardEulerTimeIntegration< SR2 >, BackwardEulerTimeIntegration< Vec >, BackwardEulerTimeIntegration< Vec >, Driver, ForwardEulerTimeIntegration< T >, ForwardEulerTimeIntegration< Scalar >, ForwardEulerTimeIntegration< Scalar >, ForwardEulerTimeIntegration< SR2 >, ForwardEulerTimeIntegration< SR2 >, ForwardEulerTimeIntegration< Vec >, ForwardEulerTimeIntegration< Vec >, ImplicitUpdate, LDISolidMechanicsDriver, Model, ModelDriver, SolidMechanicsDriver, TransientDriver, VariableRate< T >, VariableRate< Scalar >, VariableRate< Scalar >, VariableRate< SR2 >, VariableRate< SR2 >, VariableRate< Vec >, VariableRate< Vec >, WR2ExplicitExponentialTimeIntegration, and WR2ImplicitExponentialTimeIntegration.