You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
337 B

  1. #include "gtest/gtest.h"
  2. #include "src/solver/MinMaxLinearEquationSolver.h"
  3. TEST( MinMaxMethod, Simple ) {
  4. storm::solver::MinMaxMethodSelection ts = storm::solver::MinMaxMethodSelection::PolicyIteration;
  5. storm::solver::MinMaxMethod t = storm::solver::MinMaxMethod::PolicyIteration;
  6. ASSERT_EQ(convert(ts), t);
  7. }