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

@@ -0,0 +1,11 @@
class ReactionSystemWithNetworkOfAutomata(object):
def __init__(self, reaction_system, context_automata):
self.rs = reaction_system
self.cas = context_automata
def show(self, soft=False):
self.rs.show(soft)
self.cas.show()