network of automata
This commit is contained in:
@@ -8,3 +8,4 @@ from rs.extended_context_automaton import ExtendedContextAutomaton
|
||||
|
||||
from rs.network_of_context_automata import NetworkOfContextAutomata
|
||||
from rs.reaction_system_with_automaton import ReactionSystemWithAutomaton
|
||||
from rs.reaction_system_with_autnet import ReactionSystemWithNetworkOfAutomata
|
||||
11
rs/reaction_system_with_autnet.py
Normal file
11
rs/reaction_system_with_autnet.py
Normal 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()
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
from sys import exit
|
||||
from colour import *
|
||||
|
||||
from rs.reaction_system_with_concentrations import ReactionSystemWithConcentrations
|
||||
from rs.context_automaton_with_concentrations import ContextAutomatonWithConcentrations
|
||||
from rs.network_of_context_automata import NetworkOfContextAutomata
|
||||
|
||||
class ReactionSystemWithAutomaton(object):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user