9 #ifndef Tempus_StepperState_hpp
10 #define Tempus_StepperState_hpp
12 #include "Teuchos_VerboseObject.hpp"
13 #include "Teuchos_Describable.hpp"
19 template<
class Scalar>
37 public Teuchos::Describable,
38 public Teuchos::VerboseObject<Tempus::StepperState<Scalar> >
46 virtual Teuchos::RCP<StepperState<Scalar> >
clone()
const
48 Teuchos::RCP<StepperState<Scalar> > ss_out =
61 virtual std::string
description()
const {
return "Tempus::StepperState"; }
63 virtual void describe(Teuchos::FancyOStream & out,
64 const Teuchos::EVerbosityLevel )
const
75 #endif // Tempus_StepperState_hpp
virtual std::string description() const
StepperState is a simple class to hold state information about the stepper.
virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel) const
virtual void copy(const Teuchos::RCP< const StepperState< Scalar > > &ss)
This is a deep copy.
virtual Teuchos::RCP< StepperState< Scalar > > clone() const
Clone copy constructor.
std::string stepperName_
Name of the creating Stepper.
StepperState(std::string name="Default")
Constructor.