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