working on ECA

This commit is contained in:
Artur Meski
2016-12-28 18:32:32 +01:00
parent b2fa911a77
commit f73d0784ca
2 changed files with 34 additions and 8 deletions

View File

@@ -8,8 +8,15 @@ class ExtendedContextAutomaton(ContextAutomaton):
def __init__(self, reaction_system): def __init__(self, reaction_system):
self._actions = [] self._actions = []
super(ExtendedContextAutomaton, self).__init__(reaction_system) super(ExtendedContextAutomaton, self).__init__(reaction_system)
def add_transition(self, src, action, ctx_reaction, dst): def add_transition(self, src, actions, ctx_reaction, dst):
"""Adds a transition
src: is the source state name
dst: is the destination state name
actions: is the set of actions with which the transitions is synchronised
ctx_reaction: is the context reaction associated with the transition
"""
ctx_reactants, ctx_inhibitors, ctx_products = ctx_reaction ctx_reactants, ctx_inhibitors, ctx_products = ctx_reaction
@@ -33,29 +40,32 @@ class ExtendedContextAutomaton(ContextAutomaton):
src_id = self.get_state_id(src) src_id = self.get_state_id(src)
dst_id = self.get_state_id(dst) dst_id = self.get_state_id(dst)
act_id = self.get_action_id(action) act_ids = self.get_set_of_action_ids(actions)
r_ids = self.get_set_of_ids(ctx_reactants) r_ids = self.get_set_of_ids(ctx_reactants)
i_ids = self.get_set_of_ids(ctx_inhibitors) i_ids = self.get_set_of_ids(ctx_inhibitors)
p_ids = self.get_set_of_ids(ctx_products) p_ids = self.get_set_of_ids(ctx_products)
self._transitions.append((src_id, act_id, (r_ids, i_ids, p_ids), dst_id)) self._transitions.append((src_id, act_ids, (r_ids, i_ids, p_ids), dst_id))
def show_transitions(self): def show_transitions(self):
"""Prints the set of registered transitions"""
print(C_MARK_INFO + " Context automaton transitions:") print(C_MARK_INFO + " Context automaton transitions:")
for src_id, act_id, reaction, dst_id in self._transitions: for src_id, act_id, reaction, dst_id in self._transitions:
str_transition = self.get_state_name(src_id) + " --( " str_transition = self.get_state_name(src_id) + " --( "
str_transition += self.get_action_name(act_id) + " | " str_transition += "<" + self.get_actions_str(act_id) + "> | "
str_transition += "( " + self.rsset2str(reaction[0]) + "," + self.rsset2str(reaction[1]) + "," + self.rsset2str(reaction[2]) + " )" str_transition += "( " + self.rsset2str(reaction[0]) + "," + self.rsset2str(reaction[1]) + "," + self.rsset2str(reaction[2]) + " )"
str_transition += " )--> " + self.get_state_name(dst_id) str_transition += " )--> " + self.get_state_name(dst_id)
print(" - " + str_transition) print(" - " + str_transition)
def add_action(self, action_name): def add_action(self, action_name):
"""Registers an action"""
if action_name not in self._actions: if action_name not in self._actions:
self._actions.append(action_name) self._actions.append(action_name)
else: else:
print("\'%s\' already added. skipping..." % (action_name,)) print("\'%s\' already added. skipping..." % (action_name,))
def get_action_id(self, action_name): def get_action_id(self, action_name):
"""For an action name returns its id"""
try: try:
return self._actions.index(action_name) return self._actions.index(action_name)
except ValueError: except ValueError:
@@ -64,11 +74,27 @@ class ExtendedContextAutomaton(ContextAutomaton):
def get_action_name(self, action_id): def get_action_name(self, action_id):
return self._actions[action_id] return self._actions[action_id]
def get_set_of_action_ids(self, actions):
"""Converts a set of actions into the set of their ids"""
act_ids = set()
for act in actions:
act_ids.add(self.get_action_id(act))
return act_ids
def get_actions_str(self, actions):
"""Returns the string for the set of action ids given by actions"""
s = ""
for act in actions:
s += self.get_action_name(act) + ", "
s = s[:-2]
return s
def show_actions(self): def show_actions(self):
"""Prints all the actions"""
print(C_MARK_INFO + " Context automaton actions:") print(C_MARK_INFO + " Context automaton actions:")
for act in self._actions: for act in self._actions:
print(" - " + act) print(" - " + act + " (id=" + str(self.get_action_id(act)) + ")")
def show(self): def show(self):
self.show_states() self.show_states()

View File

@@ -17,8 +17,8 @@ def test_extended_automaton():
c.add_state("working") c.add_state("working")
c.add_action("act1") c.add_action("act1")
c.add_action("act2") c.add_action("act2")
c.add_transition("init", "act1", ([],[],["inc"]), "working") c.add_transition("init", ["act1", "act2"], ([],[],["inc"]), "working")
c.add_transition("working", "act2", ([],[],["inc"]), "working") c.add_transition("working", ["act2"], ([],[],["inc"]), "working")
rc = ReactionSystemWithAutomaton(r,c) rc = ReactionSystemWithAutomaton(r,c)