Browse Source
Merge branch 'monolithic-dft' of https://sselab.de/lab9/private/git/storm into monolithic-dft
Merge branch 'monolithic-dft' of https://sselab.de/lab9/private/git/storm into monolithic-dft
Former-commit-id: 1d582e6168
tempestpy_adaptions
Mavo
9 years ago
3 changed files with 43 additions and 7 deletions
@ -0,0 +1,25 @@ |
|||
#pragma once |
|||
|
|||
#include <vector> |
|||
|
|||
namespace storm { |
|||
namespace storage { |
|||
/** |
|||
* Saves isomorphism between subtrees |
|||
*/ |
|||
class DFTIsomorphism { |
|||
std::vector<std::vector<size_t>> classes; |
|||
}; |
|||
|
|||
/** |
|||
* Saves sets of isomorphic subtrees |
|||
*/ |
|||
class DFTIsomorphisms { |
|||
std::vector<DFTIsomorphism> isomorphisms; |
|||
|
|||
void addIsomorphismClass(DFTIsomorphism const &) { |
|||
|
|||
} |
|||
}; |
|||
} // namespace storm::dft |
|||
} // namespace storm |
Write
Preview
Loading…
Cancel
Save
Reference in new issue