Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
NativeSolverEnvironment.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
9
10namespace storm {
11
13 public:
16
17 storm::solver::NativeLinearEquationSolverMethod const& getMethod() const;
18 bool const& isMethodSetFromDefault() const;
19 void setMethod(storm::solver::NativeLinearEquationSolverMethod value);
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 storm::RationalNumber const& getSorOmega() const;
29 void setSorOmega(storm::RationalNumber const& value);
30 bool isSymmetricUpdatesSet() const;
31 void setSymmetricUpdates(bool value);
32
33 private:
34 storm::solver::NativeLinearEquationSolverMethod method;
35 bool methodSetFromDefault;
36 uint64_t maxIterationCount;
37 storm::RationalNumber precision;
38 bool considerRelativeTerminationCriterion;
39 storm::solver::MultiplicationStyle powerMethodMultiplicationStyle;
40 storm::RationalNumber sorOmega;
41 bool symmetricUpdates;
42};
43} // 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