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:
authorphikoehn <pkoehn@inf.ed.ac.uk>2013-04-05 14:26:00 +0400
committerphikoehn <pkoehn@inf.ed.ac.uk>2013-04-05 14:26:00 +0400
commitc016b6e04b9a0c6eddc423b0b839021f00599bbe (patch)
tree0f3d3bd32fb4d00d5c7d619db2a0d5027549b15f /biconcor/PhrasePairCollection.h
parentac82be3120ac0b143039e2e36dff8b8538bdcb68 (diff)
extended display options for biconcor
Diffstat (limited to 'biconcor/PhrasePairCollection.h')
-rw-r--r--biconcor/PhrasePairCollection.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/biconcor/PhrasePairCollection.h b/biconcor/PhrasePairCollection.h
index f88bfc10f..e076eba9b 100644
--- a/biconcor/PhrasePairCollection.h
+++ b/biconcor/PhrasePairCollection.h
@@ -22,19 +22,19 @@ private:
std::vector< Mismatch* > m_mismatch, m_unaligned;
int m_size;
int m_max_lookup;
- int m_max_pp_target;
- int m_max_pp;
+ int m_max_translation;
+ int m_max_example;
// No copying allowed.
PhrasePairCollection(const PhrasePairCollection&);
void operator=(const PhrasePairCollection&);
public:
- PhrasePairCollection ( SuffixArray *, TargetCorpus *, Alignment * );
+ PhrasePairCollection ( SuffixArray *, TargetCorpus *, Alignment *, int, int );
~PhrasePairCollection ();
- bool GetCollection( const std::vector<std::string >& sourceString );
- void Print() const;
+ int GetCollection( const std::vector<std::string >& sourceString );
+ void Print(bool pretty) const;
void PrintHTML() const;
};