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.
11 lines
440 B
11 lines
440 B
#include "storm/storage/expressions/ExpressionVisitor.h"
|
|
#include "storm/utility/macros.h"
|
|
#include "storm/exceptions/NotImplementedException.h"
|
|
|
|
namespace storm {
|
|
namespace expressions {
|
|
boost::any ExpressionVisitor::visit(PredicateExpression const&, boost::any const&) {
|
|
STORM_LOG_THROW(false,storm::exceptions::NotImplementedException, "Predicate Expressions are not supported by this visitor");
|
|
}
|
|
}
|
|
}
|