9#ifndef Tempus_Types_hpp
10#define Tempus_Types_hpp
12#include "Tempus_config.hpp"
30 std::string s =
"Invalid Status!";
32 case PASSED: { s =
"PASSED";
break; }
33 case FAILED: { s =
"FAILED";
break; }
34 case WORKING: { s =
"WORKING";
break; }
35 default: { s =
"Invalid Status!";
break; }
37 TEUCHOS_TEST_FOR_EXCEPTION(s ==
"Invalid Status!", std::logic_error,
38 "Error - Invalid status = " << status <<
"\n");
Status
Status for the Integrator, the Stepper and the SolutionState.
const std::string toString(const Status status)
Convert Status to string.