Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2014-08-08 19:41:16 +0400
committerHieu Hoang <hieu@hoang.co.uk>2014-08-08 19:41:16 +0400
commit3d884bb098878d5ddf7c6c325f464c667946a3b0 (patch)
tree7f965344aba3dbd4a7b157aeb89c687b1d0acd8b /moses/Hypothesis.h
parentc723035d0faa7e31fe4276bd6846c1c75c18b8f7 (diff)
method rename
Diffstat (limited to 'moses/Hypothesis.h')
-rw-r--r--moses/Hypothesis.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/moses/Hypothesis.h b/moses/Hypothesis.h
index 279c949a4..2b0c98d91 100644
--- a/moses/Hypothesis.h
+++ b/moses/Hypothesis.h
@@ -142,7 +142,7 @@ public:
return m_currTargetWordsRange.GetNumWordsCovered();
}
- void Evaluate(const SquareMatrix &futureScore);
+ void EvaluateWhenApplied(const SquareMatrix &futureScore);
int GetId()const {
return m_id;
@@ -256,8 +256,8 @@ public:
}
// Added by oliver.wilson@ed.ac.uk for async lm stuff.
- void EvaluateWith(const StatefulFeatureFunction &sfff, int state_idx);
- void EvaluateWith(const StatelessFeatureFunction &slff);
+ void EvaluateWhenApplied(const StatefulFeatureFunction &sfff, int state_idx);
+ void EvaluateWhenApplied(const StatelessFeatureFunction &slff);
//! target span that trans opt would populate if applied to this hypo. Used for alignment check
size_t GetNextStartPos(const TranslationOption &transOpt) const;