summaryrefslogtreecommitdiff
path: root/decoder/ff.h
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2011-10-20 01:26:22 +0200
committerPatrick Simianer <p@simianer.de>2011-10-20 01:26:22 +0200
commit77b4d84faf291a7deff116030f9bc0c70e79409a (patch)
tree3934013fbda82a58e1bcfd369f7e8deee87e6a14 /decoder/ff.h
parent1f54c7b765d4f933f4b631f265933f28e4ae2c93 (diff)
parent0526a4e39280ecd1d70d7c79b292bc5a3e91ca25 (diff)
Merge remote-tracking branch 'upstream/master' into mastermerge
Diffstat (limited to 'decoder/ff.h')
-rw-r--r--decoder/ff.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/decoder/ff.h b/decoder/ff.h
index c3aa9b6d..6c22d39f 100644
--- a/decoder/ff.h
+++ b/decoder/ff.h
@@ -259,14 +259,9 @@ typedef std::vector<FFState> FFStates;
// etc. a (translation?) forest
class ModelSet {
public:
- ModelSet() : state_size_(0) {}
-
ModelSet(const std::vector<double>& weights,
const std::vector<const FeatureFunction*>& models);
- // TODO stop stupid copy
- void SetWeights(const std::vector<double>& w) { weights_ = w; }
-
// sets edge->feature_values_ and edge->edge_prob_
// NOTE: edge must not necessarily be in hg.edges_ but its TAIL nodes
// must be. edge features are supposed to be overwritten, not added to (possibly because rule features aren't in ModelSet so need to be left alone
@@ -294,7 +289,7 @@ class ModelSet {
private:
std::vector<const FeatureFunction*> models_;
- std::vector<double> weights_;
+ const std::vector<double>& weights_;
int state_size_;
std::vector<int> model_state_pos_;
};