minor renaming

This commit is contained in:
Hieu Hoang 2016-02-18 13:37:59 +00:00
parent d65687e76f
commit ec48a33b7c

View File

@ -211,15 +211,15 @@ void KENLM::EvaluateWhenApplied(const Manager &mgr,
const Model::State *state0 = stateCast.state; const Model::State *state0 = stateCast.state;
const Model::State *state1 = &aux_state; const Model::State *state1 = &aux_state;
const LMCacheValue &val0 = ScoreAndCache(mgr, *in_state, TranslateID(hypo.GetWord(position))); const LMCacheValue &val = ScoreAndCache(mgr, *in_state, TranslateID(hypo.GetWord(position)));
float score = val0.first; float score = val.first;
state0 = val0.second; state0 = val.second;
++position; ++position;
for (; position < adjust_end; ++position) { for (; position < adjust_end; ++position) {
const LMCacheValue &val1 = ScoreAndCache(mgr, *state0, TranslateID(hypo.GetWord(position))); const LMCacheValue &val = ScoreAndCache(mgr, *state0, TranslateID(hypo.GetWord(position)));
score += val1.first; score += val.first;
state1 = val1.second; state1 = val.second;
std::swap(state0, state1); std::swap(state0, state1);
} }