Added num_transitions to Memory interface (#137)

This commit is contained in:
Ryan Peach
2018-12-05 10:33:25 +02:00
committed by Gal Leibovich
parent 3e281b467b
commit 436b16016e
+6
View File
@@ -72,3 +72,9 @@ class Memory(object):
def set_memory_backend(self, memory_backend: MemoryBackend):
self.memory_backend = memory_backend
def num_transitions(self) -> int:
"""
Get the number of transitions in the ER
"""
raise NotImplementedError("")