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.
16 lines
697 B
16 lines
697 B
#include "src/storage/prism/menu_games/AbstractionExpressionInformation.h"
|
|
|
|
#include "src/storage/expressions/ExpressionManager.h"
|
|
#include "src/storage/expressions/Expression.h"
|
|
|
|
namespace storm {
|
|
namespace prism {
|
|
namespace menu_games {
|
|
|
|
AbstractionExpressionInformation::AbstractionExpressionInformation(storm::expressions::ExpressionManager& expressionManager, std::vector<storm::expressions::Expression> const& predicates, std::set<storm::expressions::Variable> const& variables) : expressionManager(expressionManager), predicates(predicates), variables(variables) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|