Storm 1.11.1.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
RationalFunctionToExpression.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace storm {
7namespace expressions {
8template<typename ValueType>
10 public:
11 RationalFunctionToExpression(std::shared_ptr<ExpressionManager> manager);
12
18 std::shared_ptr<ExpressionManager> getManager();
19
26 Expression toExpression(ValueType function);
27
28 private:
29 // The manager responsible for the variables of this valuation.
30 std::shared_ptr<ExpressionManager> manager;
31};
32} // namespace expressions
33} // namespace storm
std::shared_ptr< ExpressionManager > getManager()
Retrieves the manager responsible for the variables of this valuation.
Expression toExpression(ValueType function)
Transforms the function into an expression.