2014-11-10 05:28:56 +00:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
|
|
|
|
from .moves cimport Move
|
|
|
|
from ._state cimport State
|
|
|
|
|
|
|
|
|
|
|
|
cdef class PyState:
|
|
|
|
cdef Pool mem
|
2014-11-11 06:17:54 +00:00
|
|
|
cdef readonly list tag_names
|
2014-11-10 05:28:56 +00:00
|
|
|
cdef readonly int n_classes
|
|
|
|
cdef readonly dict moves_by_name
|
|
|
|
|
|
|
|
cdef Move* _moves
|
2014-11-10 11:15:18 +00:00
|
|
|
cdef Move* _golds
|
2014-11-10 05:28:56 +00:00
|
|
|
cdef State* _s
|
2014-11-10 06:39:23 +00:00
|
|
|
|
|
|
|
cdef Move* _get_move(self, unicode move_name) except NULL
|