Tempus  Version of the Day
Time Integration
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Tempus_IntegratorObserverNoOp_impl.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ****************************************************************************
3 // Tempus: Copyright (2017) Sandia Corporation
4 //
5 // Distributed under BSD 3-clause license (See accompanying file Copyright.txt)
6 // ****************************************************************************
7 // @HEADER
8 
9 #ifndef Tempus_IntegratorObserverNoOp_impl_hpp
10 #define Tempus_IntegratorObserverNoOp_impl_hpp
11 
12 #include "Tempus_Stepper.hpp"
13 
14 namespace Tempus {
15 
16 template<class Scalar>
18 
19 template<class Scalar>
21 
22 template<class Scalar>
24 observeStartIntegrator(const Integrator<Scalar>& /* integrator */){}
25 
26 template<class Scalar>
28 observeStartTimeStep(const Integrator<Scalar>& /* integrator */){}
29 
30 template<class Scalar>
32 observeNextTimeStep(const Integrator<Scalar>& /* integrator */){}
33 
34 template<class Scalar>
36 observeBeforeTakeStep(const Integrator<Scalar>& /* integrator */){}
37 
38 template<class Scalar>
40 observeAfterTakeStep(const Integrator<Scalar>& /* integrator */){}
41 
42 template<class Scalar>
45 
46 template<class Scalar>
48 observeEndTimeStep(const Integrator<Scalar>& /* integrator */){}
49 
50 template<class Scalar>
52 observeEndIntegrator(const Integrator<Scalar>& /* integrator */){}
53 
54 } // namespace Tempus
55 #endif // Tempus_IntegratorObserverNoOp_impl_hpp
virtual void observeNextTimeStep(const Integrator< Scalar > &integrator) override
Observe after the next time step size is selected.
virtual void observeStartIntegrator(const Integrator< Scalar > &integrator) override
Observe the beginning of the time integrator.
virtual void observeAfterCheckTimeStep(const Integrator< Scalar > &integrator) override
Observe after checking time step. Observer can still fail the time step here.
virtual void observeStartTimeStep(const Integrator< Scalar > &integrator) override
Observe the beginning of the time step loop.
virtual void observeEndIntegrator(const Integrator< Scalar > &integrator) override
Observe the end of the time integrator.
virtual void observeEndTimeStep(const Integrator< Scalar > &integrator) override
Observe the end of the time step loop.
Thyra Base interface for time integrators. Time integrators are designed to advance the solution from...
virtual void observeAfterTakeStep(const Integrator< Scalar > &integrator) override
Observe after Stepper takes step.
virtual void observeBeforeTakeStep(const Integrator< Scalar > &integrator) override
Observe before Stepper takes step.