Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
NativeSolverEnvironment.h
Go to the documentation of this file.
1#pragma once
2
7
8namespace storm {
9
11 public:
14
15 storm::solver::NativeLinearEquationSolverMethod const& getMethod() const;
16 bool const& isMethodSetFromDefault() const;
17 void setMethod(storm::solver::NativeLinearEquationSolverMethod value);
18 uint64_t const& getMaximalNumberOfIterations() const;
19 void setMaximalNumberOfIterations(uint64_t value);
20 storm::RationalNumber const& getPrecision() const;
21 void setPrecision(storm::RationalNumber value);
22 bool const& getRelativeTerminationCriterion() const;
23 void setRelativeTerminationCriterion(bool value);
26 storm::RationalNumber const& getSorOmega() const;
27 void setSorOmega(storm::RationalNumber const& value);
28 bool isSymmetricUpdatesSet() const;
29 void setSymmetricUpdates(bool value);
30
31 private:
32 storm::solver::NativeLinearEquationSolverMethod method;
33 bool methodSetFromDefault;
34 uint64_t maxIterationCount;
35 storm::RationalNumber precision;
36 bool considerRelativeTerminationCriterion;
37 storm::solver::MultiplicationStyle powerMethodMultiplicationStyle;
38 storm::RationalNumber sorOmega;
39 bool symmetricUpdates;
40};
41} // namespace storm
storm::RationalNumber const & getPrecision() const
void setSorOmega(storm::RationalNumber const &value)
void setPowerMethodMultiplicationStyle(storm::solver::MultiplicationStyle value)
uint64_t const & getMaximalNumberOfIterations() const
void setMaximalNumberOfIterations(uint64_t value)
bool const & getRelativeTerminationCriterion() const
void setMethod(storm::solver::NativeLinearEquationSolverMethod value)
void setPrecision(storm::RationalNumber value)
storm::solver::MultiplicationStyle const & getPowerMethodMultiplicationStyle() const
storm::solver::NativeLinearEquationSolverMethod const & getMethod() const
storm::RationalNumber const & getSorOmega() const