summaryrefslogtreecommitdiff
path: root/decoder/lattice.h
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-02-26 14:24:41 +0100
committerPatrick Simianer <p@simianer.de>2015-02-26 14:24:41 +0100
commit29ddfafb0dea599965e6a881c25b396a6db2f40f (patch)
tree5755ec058361776657041ba088062b086eea6d68 /decoder/lattice.h
parent4223261682388944fe1b1cf31b9d51d88f9ad53b (diff)
parent03989754cb2511431e1df6001fca41b3806ad461 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'decoder/lattice.h')
-rw-r--r--decoder/lattice.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/decoder/lattice.h b/decoder/lattice.h
index 1258d3f5..469615b5 100644
--- a/decoder/lattice.h
+++ b/decoder/lattice.h
@@ -3,6 +3,7 @@
#include <string>
#include <vector>
+#include "sparse_vector.h"
#include "wordid.h"
#include "array2d.h"
@@ -15,10 +16,10 @@ struct LatticeTools {
struct LatticeArc {
WordID label;
- double cost;
+ SparseVector<double> features;
int dist2next;
- LatticeArc() : label(), cost(), dist2next() {}
- LatticeArc(WordID w, double c, int i) : label(w), cost(c), dist2next(i) {}
+ LatticeArc() : label(), features(), dist2next() {}
+ LatticeArc(WordID w, const SparseVector<double>& f, int i) : label(w), features(f), dist2next(i) {}
};
class Lattice : public std::vector<std::vector<LatticeArc> > {