Files
reactics/rs/reaction_system_with_autnet.py
2019-02-23 14:41:36 +00:00

13 lines
273 B
Python

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()
# EOF