Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
StronglyConnectedComponent.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace storm {
7namespace storage {
8
14 public:
20
26 void setIsTrivial(bool trivial);
27
33 bool isTrivial() const;
34
35 private:
36 // Stores whether this SCC is trivial.
37 bool isTrivialScc;
38};
39
40} // namespace storage
41} // namespace storm
StronglyConnectedComponent(StronglyConnectedComponent &&other)=default
void setIsTrivial(bool trivial)
Sets whether this SCC is trivial or not.
bool isTrivial() const
Retrieves whether this SCC is trivial.
StronglyConnectedComponent(StronglyConnectedComponent const &other)=default
StronglyConnectedComponent & operator=(StronglyConnectedComponent &&other)=default
StronglyConnectedComponent & operator=(StronglyConnectedComponent const &other)=default