Browse Source
Further work on state space generation
Further work on state space generation
Former-commit-id: bb373138e5
tempestpy_adaptions
sjunges
10 years ago
5 changed files with 76 additions and 2 deletions
-
3src/storage/dft/DFT.cpp
-
14src/storage/dft/DFTElements.cpp
-
32src/storage/dft/DFTElements.h
-
22src/storage/dft/DFTUnit.h
-
7src/storage/dft/SymmetricUnits.h
@ -0,0 +1,22 @@ |
|||||
|
#ifndef DFTUNIT_H |
||||
|
#define DFTUNIT_H |
||||
|
|
||||
|
namespace storm { |
||||
|
namespace storage { |
||||
|
class DFT; |
||||
|
|
||||
|
class DFTUnit { |
||||
|
private: |
||||
|
DFT const& mDft; |
||||
|
BitVector mMembers; |
||||
|
|
||||
|
|
||||
|
public: |
||||
|
DFTUnit(DFT const& dft, BitVector const& members); |
||||
|
}; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
||||
|
#endif /* DFTUNIT_H */ |
||||
|
|
@ -0,0 +1,7 @@ |
|||||
|
#ifndef SYMMETRICUNITS_H |
||||
|
#define SYMMETRICUNITS_H |
||||
|
|
||||
|
|
||||
|
|
||||
|
#endif /* SYMMETRICUNITS_H */ |
||||
|
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue