def __init__(self):
     Automaton.__init__(self, VERBOSE)
     # Define States
     self.INIT = 0
     self.SCAN_COPY_XML = 1
     self.INSERT_PAUSES = 2
     self.TALLY_PASS = 3
     self.PRIMARY_ANALYSIS = 4
     self.WRITE_RESULTS = 5
     # Initial Transition
     self.Transition(self.INIT)
 def __init__(self):
     Automaton.__init__(self, VERBOSE)
     # Define States
     self.INIT = 0
     self.GET_BATCH_CFG = 1
     self.DESIGN_SEQ = 2
     self.DESIGN_PAUSE = 3
     self.PERF_ANALYSIS = 4
     self.LOG_RESULTS = 5
     self.COMPLETE = 6
     # Initial Transition
     self.Transition(self.INIT)
Beispiel #3
0
def make_random_automaton(n: Int) -> Automaton:
    """
    builds an n states x k inputs automation
    with a random transition table
    :param n:
    :return: Automation
    """
    seed = (next(rand_num))
    table = [[(next(rand_num)) for _ in range(n)] for _ in range(n)]
    return Automaton(seed, 0.0, table, seed)
Beispiel #4
0
def make_random_automaton(n):
    """
    builds an n states x k inputs automation
    with a random transition table
    :param n:
    :return: Automation
    """
    seed = random.randrange(n)
    table = []
    for i in range(0, n):
        trans = random.sample(xrange(n), n)
        table = table + [trans]
    return Automaton(seed, 0, table, seed)
Beispiel #5
0
def grim_trigger(p0):
    return Automaton(COOPERATE, p0, t4, COOPERATE)
Beispiel #6
0
def tit_for_tat(p0):
    return Automaton(COOPERATE, p0, t3, COOPERATE)
Beispiel #7
0
def cooperates(p0):
    return Automaton(COOPERATE, p0, t2, COOPERATE)
Beispiel #8
0
def defects(p0):
    return Automaton(DEFECT, p0, t1, DEFECT)