summaryrefslogtreecommitdiff
path: root/decoder/feature_vector.h
blob: 1b2725064bf12c026bcb76e1ea7a840d543ab396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _FEATURE_VECTOR_H_
#define _FEATURE_VECTOR_H_

#include <vector>
#include "sparse_vector.h"
#include "fdict.h"

typedef double Featval;
typedef SparseVectorList<Featval> FeatureVectorList;
typedef SparseVector<Featval> FeatureVector;
typedef SparseVector<Featval> WeightVector;
typedef std::vector<Featval> DenseWeightVector;

#endif