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
path: root/moses
diff options
context:
space:
mode:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2015-02-10 02:16:00 +0300
committerUlrich Germann <ugermann@inf.ed.ac.uk>2015-02-10 02:16:00 +0300
commitd3e39c2138e45fd1fff13816215f1560afe82829 (patch)
tree91eb3fdd3565e96ee85ddbb8e855d9282ebcd859 /moses
parent3fc2fbe417f8ec9c9aa7f3a891d954bc88e44efd (diff)
Fixed minor issues that triggered compiler warnings.
Diffstat (limited to 'moses')
-rw-r--r--moses/FF/OSM-Feature/OpSequenceModel.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/moses/FF/OSM-Feature/OpSequenceModel.cpp b/moses/FF/OSM-Feature/OpSequenceModel.cpp
index 43ed5f346..d4e2f8719 100644
--- a/moses/FF/OSM-Feature/OpSequenceModel.cpp
+++ b/moses/FF/OSM-Feature/OpSequenceModel.cpp
@@ -66,14 +66,14 @@ void OpSequenceModel:: EvaluateInIsolation(const Phrase &source
alignments.push_back(iter->second);
}
- for (int i = 0; i < targetPhrase.GetSize(); i++) {
+ for (size_t i = 0; i < targetPhrase.GetSize(); i++) {
if (targetPhrase.GetWord(i).IsOOV() && sFactor == 0 && tFactor == 0)
myTargetPhrase.push_back("_TRANS_SLF_");
else
myTargetPhrase.push_back(targetPhrase.GetWord(i).GetFactor(tFactor)->GetString().as_string());
}
- for (int i = 0; i < source.GetSize(); i++) {
+ for (size_t i = 0; i < source.GetSize(); i++) {
mySourcePhrase.push_back(source.GetWord(i).GetFactor(sFactor)->GetString().as_string());
}
@@ -97,7 +97,7 @@ FFState* OpSequenceModel::EvaluateWhenApplied(
WordsBitmap myBitmap = bitmap;
const Manager &manager = cur_hypo.GetManager();
const InputType &source = manager.GetSource();
- const Sentence &sourceSentence = static_cast<const Sentence&>(source);
+ // const Sentence &sourceSentence = static_cast<const Sentence&>(source);
osmHypothesis obj;
vector <string> mySourcePhrase;
vector <string> myTargetPhrase;
@@ -124,7 +124,7 @@ FFState* OpSequenceModel::EvaluateWhenApplied(
int startIndex = sourceRange.GetStartPos();
int endIndex = sourceRange.GetEndPos();
const AlignmentInfo &align = cur_hypo.GetCurrTargetPhrase().GetAlignTerm();
- osmState * statePtr;
+ // osmState * statePtr;
vector <int> alignments;
@@ -149,7 +149,7 @@ FFState* OpSequenceModel::EvaluateWhenApplied(
// cerr<<mySourcePhrase[i]<<endl;
}
- for (int i = 0; i < target.GetSize(); i++) {
+ for (size_t i = 0; i < target.GetSize(); i++) {
if (target.GetWord(i).IsOOV() && sFactor == 0 && tFactor == 0)
myTargetPhrase.push_back("_TRANS_SLF_");