Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
MinMaxSolverEnvironment.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
9
10namespace storm {
11
13
15 public:
18
19 storm::solver::MinMaxMethod const& getMethod() const;
20 bool const& isMethodSetFromDefault() const;
21 void setMethod(storm::solver::MinMaxMethod value, bool isSetFromDefault = false);
22 uint64_t const& getMaximalNumberOfIterations() const;
23 void setMaximalNumberOfIterations(uint64_t value);
24 storm::RationalNumber const& getPrecision() const;
25 void setPrecision(storm::RationalNumber value);
26 bool const& getRelativeTerminationCriterion() const;
27 void setRelativeTerminationCriterion(bool value);
30 bool isForceRequireUnique() const;
31 void setForceRequireUnique(bool value);
32 MinMaxLpSolverEnvironment const& lp() const;
34
35 private:
36 storm::solver::MinMaxMethod minMaxMethod;
37 bool methodSetFromDefault;
38 uint64_t maxIterationCount;
39 storm::RationalNumber precision;
40 bool considerRelativeTerminationCriterion;
41 storm::solver::MultiplicationStyle multiplicationStyle;
42 bool forceRequireUnique;
44};
45} // 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