summaryrefslogtreecommitdiff
path: root/python/src/lattice.pxd
diff options
context:
space:
mode:
authorVictor Chahuneau <vchahune@cs.cmu.edu>2012-06-23 11:59:48 -0400
committerVictor Chahuneau <vchahune@cs.cmu.edu>2012-06-23 11:59:48 -0400
commitb738e349be490c24d3604c224f44fc54e16d3d7b (patch)
tree5d435257ef3c0023daa2211eb7260c470dbb6cdc /python/src/lattice.pxd
parent0b27ea3f91d0ad2f2ed718839d308db3d1baf5ae (diff)
Support for sparse/dense vectors in the python extension
- SparseVector, DenseVector - improved Lattice - Lattice translation - Hypergraph reweighting, pruning
Diffstat (limited to 'python/src/lattice.pxd')
-rw-r--r--python/src/lattice.pxd9
1 files changed, 7 insertions, 2 deletions
diff --git a/python/src/lattice.pxd b/python/src/lattice.pxd
index bdfaba80..3a4bc22f 100644
--- a/python/src/lattice.pxd
+++ b/python/src/lattice.pxd
@@ -1,4 +1,5 @@
from libcpp.vector cimport vector
+from libcpp.string cimport string
from utils cimport WordID
cdef extern from "decoder/lattice.h":
@@ -9,8 +10,12 @@ cdef extern from "decoder/lattice.h":
LatticeArc()
LatticeArc(WordID w, double c, int i)
- cdef cppclass Lattice: # (vector[vector[LatticeArc]])
+ cdef cppclass Lattice(vector): # (vector[vector[LatticeArc]])
Lattice()
Lattice(unsigned t)
- Lattice(unsigned t, vector[LatticeArc] v)
+ Lattice(unsigned t, vector[LatticeArc]& v)
bint IsSentence()
+ vector[LatticeArc]& operator[](unsigned)
+
+cdef extern from "decoder/lattice.h" namespace "LatticeTools":
+ void ConvertTextToLattice(string& text, Lattice* pl)