17 lines
486 B
17 lines
486 B
#include "src/storage/StronglyConnectedComponent.h"
|
|
|
|
namespace storm {
|
|
namespace storage {
|
|
StronglyConnectedComponent::StronglyConnectedComponent() : isTrivialScc(false) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
void StronglyConnectedComponent::setIsTrivial(bool trivial) {
|
|
this->isTrivialScc = trivial;
|
|
}
|
|
|
|
bool StronglyConnectedComponent::isTrivial() const {
|
|
return isTrivialScc;
|
|
}
|
|
}
|
|
}
|