network of automata

This commit is contained in:
Artur Meski
2016-12-28 22:43:26 +01:00
parent 58f06c3fc1
commit f367c5d72c
5 changed files with 19 additions and 13 deletions

View File

@@ -10,12 +10,10 @@ import resource
class SmtCheckerRSNA(object):
"""SMT-based Model Checking for Reaction Systems with Network of Automata"""
def __init__(self, rsca):
rsca.sanity_check()
def __init__(self, reaction_system_with_netaut):
self.rs = rsca.rs
self.ca = rsca.ca
self.rs = reaction_system_with_netaut.rs
self.ca = reaction_system_with_netaut.cas
self.v = []
self.v_ctx = []