You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
664 B

#include "storm/storage/expressions/ExprtkCompiledExpression.h"
namespace storm {
namespace expressions {
ExprtkCompiledExpression::ExprtkCompiledExpression(CompiledExpressionType const& exprtkCompiledExpression) : exprtkCompiledExpression(exprtkCompiledExpression) {
// Intentionally left empty.
}
ExprtkCompiledExpression::CompiledExpressionType const& ExprtkCompiledExpression::getCompiledExpression() const {
return exprtkCompiledExpression;
}
bool ExprtkCompiledExpression::isExprtkCompiledExpression() const {
return true;
}
}
}