11 lines
340 B
11 lines
340 B
#include "gtest/gtest.h"
|
|
|
|
#include "storm/solver/MinMaxLinearEquationSolver.h"
|
|
|
|
TEST( MinMaxMethod, Simple ) {
|
|
storm::solver::MinMaxMethodSelection ts = storm::solver::MinMaxMethodSelection::PolicyIteration;
|
|
storm::solver::MinMaxMethod t = storm::solver::MinMaxMethod::PolicyIteration;
|
|
ASSERT_EQ(convert(ts), t);
|
|
|
|
|
|
}
|