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:
authorNicola Bertoldi <bertoldi@fbk.eu>2014-01-15 19:42:02 +0400
committerNicola Bertoldi <bertoldi@fbk.eu>2014-01-15 19:42:02 +0400
commitbd83999264407dd7970736ee3e70a6b39fb19014 (patch)
tree1a0a0d9bab2b8caf853c301187beb637b0a1af61 /moses/Util.h
parenta098550f33dd1eead0e72a98a4822ce924841550 (diff)
beautify
Diffstat (limited to 'moses/Util.h')
-rw-r--r--moses/Util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/Util.h b/moses/Util.h
index b4e750771..9bdcf622f 100644
--- a/moses/Util.h
+++ b/moses/Util.h
@@ -316,7 +316,7 @@ inline float CalcTranslationScore(const std::vector<float> &probVector,
const std::vector<float> &weightT)
{
UTIL_THROW_IF2(weightT.size() != probVector.size(),
- "Weight and score vector sizes not the same");
+ "Weight and score vector sizes not the same");
float rv=0.0;
for(float const *sb=&probVector[0],*se=sb+probVector.size(),*wb=&weightT[0];
sb!=se; ++sb, ++wb)