Browse Source

Add documentation

tempestpy_adaptions
Jip Spel 6 years ago
parent
commit
c9c2816e18
  1. 12
      src/storm/storage/expressions/ValueTypeToExpression.h

12
src/storm/storage/expressions/ValueTypeToExpression.h

@ -13,11 +13,6 @@ namespace storm {
template<typename ValueType> template<typename ValueType>
class ValueTypeToExpression { class ValueTypeToExpression {
public: public:
/*!
*
*
* @param manager The manager of the variables.
*/
ValueTypeToExpression(std::shared_ptr<ExpressionManager> manager); ValueTypeToExpression(std::shared_ptr<ExpressionManager> manager);
/*! /*!
@ -28,10 +23,10 @@ namespace storm {
std::shared_ptr<ExpressionManager> getManager(); std::shared_ptr<ExpressionManager> getManager();
/*! /*!
* Transforms the function into an expression.
* *
* @param function
* @param manager
* @return
* @param function The function to transform
* @return The created expression.
*/ */
Expression toExpression(ValueType function); Expression toExpression(ValueType function);
@ -42,5 +37,4 @@ namespace storm {
} }
} }
#endif //STORM_VALUETYPETOEXPRESSION_H #endif //STORM_VALUETYPETOEXPRESSION_H
Loading…
Cancel
Save