Storm 1.10.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
StronglyConnectedComponent.h
Go to the documentation of this file.
1#ifndef STORM_STORAGE_STRONGLYCONNECTEDCOMPONENT_H_
2#define STORM_STORAGE_STRONGLYCONNECTEDCOMPONENT_H_
3
6
7namespace storm {
8namespace storage {
9
15 public:
21
27 void setIsTrivial(bool trivial);
28
34 bool isTrivial() const;
35
36 private:
37 // Stores whether this SCC is trivial.
38 bool isTrivialScc;
39};
40
41} // namespace storage
42} // namespace storm
43
44#endif /* STORM_STORAGE_STRONGLYCONNECTEDCOMPONENT_H_ */
This class represents a strongly connected component, i.e., a set of states such that every state can...
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
LabParser.cpp.