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.
20 lines
616 B
20 lines
616 B
#include "NondeterministicBranch.h"
|
|
#include "storm-pgcl/storage/pgcl/AbstractStatementVisitor.h"
|
|
|
|
namespace storm {
|
|
namespace pgcl {
|
|
NondeterministicBranch::NondeterministicBranch(std::shared_ptr<storm::pgcl::PgclBlock> const& left, std::shared_ptr<storm::pgcl::PgclBlock> const& right) {
|
|
leftBranch = left;
|
|
rightBranch = right;
|
|
}
|
|
|
|
void NondeterministicBranch::accept(storm::pgcl::AbstractStatementVisitor& visitor) {
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
bool NondeterministicBranch::isNondet() const {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|