File size: 318 Bytes
948620a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cimport cython

from . cimport Machines


@cython.final
cdef class StateMap:
    cdef Machines.FastMachine new_machine
    cdef dict old_to_new_dict
    cdef dict new_to_old_dict

    cdef old_to_new(self, set old_state_set)
    cdef highest_priority_action(self, set state_set)
    cdef make_key(self, set state_set)