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.
21 lines
660 B
21 lines
660 B
#include "storm/storage/expressions/CompiledExpression.h"
|
|
|
|
#include "storm/storage/expressions/ExprtkCompiledExpression.h"
|
|
|
|
namespace storm {
|
|
namespace expressions {
|
|
|
|
bool CompiledExpression::isExprtkCompiledExpression() const {
|
|
return false;
|
|
}
|
|
|
|
ExprtkCompiledExpression& CompiledExpression::asExprtkCompiledExpression() {
|
|
return static_cast<ExprtkCompiledExpression&>(*this);
|
|
}
|
|
|
|
ExprtkCompiledExpression const& CompiledExpression::asExprtkCompiledExpression() const {
|
|
return static_cast<ExprtkCompiledExpression const&>(*this);
|
|
}
|
|
|
|
}
|
|
}
|