Points example working

This commit is contained in:
Andrei Bondarenko 2021-08-27 09:46:44 +02:00
parent dfcc24f487
commit 6df566373d
13 changed files with 518 additions and 50 deletions

View file

@ -8,8 +8,9 @@ import re
class PN:
def __init__(self, ltm_pn: UUID, model: UUID, state: State):
self.ltm_pn = ltm_pn
def __init__(self, model: UUID, state: State):
ltm_pn_id = state.read_dict(state.read_root(), "PN")
self.ltm_pn = UUID(state.read_value(ltm_pn_id))
self.model = model
self.bottom = Bottom(state)