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

@@ -4,8 +4,8 @@ import rs_examples
def run_tests():
# test_extended_automaton()
process()
test_extended_automaton()
# process()
def test_extended_automaton():
@@ -33,11 +33,11 @@ def test_extended_automaton():
na = NetworkOfContextAutomata([c1,c2])
rna = ReactionSystemWithAutomaton(r,na)
rna = ReactionSystemWithNetworkOfAutomata(r,na)
rna.show()
checker = SmtCheckerRS(rna)
checker = SmtCheckerRSNA(rna)
def process():