Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
MinMaxSolverEnvironment.h
Go to the documentation of this file.
1#pragma once
2
7
8namespace storm {
9
10class MinMaxLpSolverEnvironment;
11
13 public:
16
17 storm::solver::MinMaxMethod const& getMethod() const;
18 bool const& isMethodSetFromDefault() const;
19 void setMethod(storm::solver::MinMaxMethod value, bool isSetFromDefault = false);
20 uint64_t const& getMaximalNumberOfIterations() const;
21 void setMaximalNumberOfIterations(uint64_t value);
22 storm::RationalNumber const& getPrecision() const;
23 void setPrecision(storm::RationalNumber value);
24 bool const& getRelativeTerminationCriterion() const;
25 void setRelativeTerminationCriterion(bool value);
28 bool isForceRequireUnique() const;
29 void setForceRequireUnique(bool value);
30 MinMaxLpSolverEnvironment const& lp() const;
32
33 private:
34 storm::solver::MinMaxMethod minMaxMethod;
35 bool methodSetFromDefault;
36 uint64_t maxIterationCount;
37 storm::RationalNumber precision;
38 bool considerRelativeTerminationCriterion;
39 storm::solver::MultiplicationStyle multiplicationStyle;
40 bool forceRequireUnique;
42};
43} // namespace storm
void setMultiplicationStyle(storm::solver::MultiplicationStyle value)
uint64_t const & getMaximalNumberOfIterations() const
storm::solver::MultiplicationStyle const & getMultiplicationStyle() const
MinMaxLpSolverEnvironment const & lp() const
storm::RationalNumber const & getPrecision() const
storm::solver::MinMaxMethod const & getMethod() const
void setPrecision(storm::RationalNumber value)
void setMethod(storm::solver::MinMaxMethod value, bool isSetFromDefault=false)
void setMaximalNumberOfIterations(uint64_t value)
bool const & getRelativeTerminationCriterion() const