1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
from libc.stdio cimport FILE
from posix.unistd cimport off_t
cdef class MemoryMap:
cdef int fd
cdef off_t fs
cdef void* map_start
cdef void* map_ptr
cdef int read_int(self)
cdef int* read_int_array(self, int size)
cdef char* read_char_array(self, int size)
cdef float* read_float_array(self, int size)
cdef class FloatList:
cdef int size
cdef int increment
cdef int len
cdef float* arr
cdef object memory
cdef void set(self, int i, float v)
cdef void write_handle(self, FILE* f)
cdef void read_handle(self, FILE* f)
cdef void read_mmaped(self, MemoryMap buf)
cdef class IntList:
cdef int size
cdef int increment
cdef int len
cdef int* arr
cdef object memory
cdef void set(self, int i, int val)
cdef void _append(self, int val)
cdef void _extend_arr(self, int* other, int other_len)
cdef void _clear(self)
cdef void write_handle(self, FILE* f)
cdef void read_handle(self, FILE* f)
cdef void read_mmaped(self, MemoryMap buf)
cdef class FeatureVector:
cdef IntList names
cdef FloatList values
cdef class Phrase:
cdef int *syms
cdef int n, *varpos, n_vars
cdef public int chunkpos(self, int k)
cdef public int chunklen(self, int k)
cdef class Rule:
cdef int lhs
cdef readonly Phrase f, e
cdef FeatureVector scores
cdef int n_scores
cdef word_alignments
cdef char* sym_tostring(int sym)
cdef char* sym_tocat(int sym)
cdef int sym_isvar(int sym)
cdef int sym_getindex(int sym)
|