NEML2 2.0.0
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
DiagnosticsInterface Class Referenceabstract

Interface for object making diagnostics about common setup errors. More...

Detailed Description

Interface for object making diagnostics about common setup errors.

#include <DiagnosticsInterface.h>

Inheritance diagram for DiagnosticsInterface:

Public Member Functions

 DiagnosticsInterface ()=delete
 
 DiagnosticsInterface (NEML2Object *object)
 
 DiagnosticsInterface (DiagnosticsInterface &&)=delete
 
 DiagnosticsInterface (const DiagnosticsInterface &)=delete
 
DiagnosticsInterfaceoperator= (const DiagnosticsInterface &)=delete
 
DiagnosticsInterfaceoperator= (DiagnosticsInterface &&)=delete
 
virtual ~DiagnosticsInterface ()=default
 
virtual void diagnose () const =0
 Check for common problems.
 
const NEML2Objectobject () const
 Get the object.
 

Constructor & Destructor Documentation

◆ DiagnosticsInterface() [1/4]

◆ DiagnosticsInterface() [2/4]

◆ DiagnosticsInterface() [3/4]

◆ DiagnosticsInterface() [4/4]

◆ ~DiagnosticsInterface()

virtual ~DiagnosticsInterface ( )
virtualdefault

Member Function Documentation

◆ diagnose()

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.

◆ object()

const NEML2Object & object ( ) const
inline

Get the object.

◆ operator=() [1/2]

DiagnosticsInterface & operator= ( const DiagnosticsInterface & )
delete

◆ operator=() [2/2]

DiagnosticsInterface & operator= ( DiagnosticsInterface && )
delete