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:
authorTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 03:58:23 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 03:58:23 +0400
commit68315d6407f55ff98b3b3bf89dc725d2ccad8019 (patch)
tree6d4e95512f522e857d39e8f796dcf4dbfee003d8 /mert/TerScorer.h
parent4f6d022fe7fa6c8e3279de2221a24f11afd8f8ba (diff)
Fix class, function, and implementation comments format.
Functions comments should be placed in their declarations.
Diffstat (limited to 'mert/TerScorer.h')
-rw-r--r--mert/TerScorer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/mert/TerScorer.h b/mert/TerScorer.h
index 5cfcc641c..8a1fcbff9 100644
--- a/mert/TerScorer.h
+++ b/mert/TerScorer.h
@@ -24,8 +24,8 @@ using namespace TERCpp;
/**
- * Bleu scoring
- **/
+ * TER scoring
+ */
class TerScorer: public StatisticsBasedScorer
{
public:
@@ -49,17 +49,17 @@ public:
private:
string javaEnv;
string tercomEnv;
- //no copy
+ // no copying allowed
TerScorer(const TerScorer&);
~TerScorer() {};
TerScorer& operator=(const TerScorer&);
+
// data extracted from reference files
vector<size_t> _reflengths;
vector<multiset<int> > _reftokens;
vector<vector<int> > m_references;
vector<vector<vector<int> > > m_multi_references;
string m_pid;
-
};
#endif // __TERSCORER_H__