Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
MinMaxTechniqueSelectionTest.cpp
Go to the documentation of this file.
1#include "storm-config.h"
2#include "test/storm_gtest.h"
3
5
6TEST(MinMaxMethod, Simple) {
7 storm::solver::MinMaxMethodSelection ts = storm::solver::MinMaxMethodSelection::PolicyIteration;
8 storm::solver::MinMaxMethod t = storm::solver::MinMaxMethod::PolicyIteration;
9 ASSERT_EQ(convert(ts), t);
10}
TEST(MinMaxMethod, Simple)