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.
27 lines
915 B
27 lines
915 B
#include "src/storage/jani/AutomatonComposition.h"
|
|
|
|
namespace storm {
|
|
namespace jani {
|
|
|
|
AutomatonComposition::AutomatonComposition(std::string const& name, std::set<std::string> const& inputEnabledActions) : name(name), inputEnabledActions(inputEnabledActions) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
boost::any AutomatonComposition::accept(CompositionVisitor& visitor, boost::any const& data) const {
|
|
return visitor.visit(*this, data);
|
|
}
|
|
|
|
std::string const& AutomatonComposition::getAutomatonName() const {
|
|
return name;
|
|
}
|
|
|
|
std::set<std::string> const& AutomatonComposition::getInputEnabledActions() const {
|
|
return inputEnabledActions;
|
|
}
|
|
|
|
void AutomatonComposition::write(std::ostream& stream) const {
|
|
stream << name;
|
|
}
|
|
|
|
}
|
|
}
|