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:
Diffstat (limited to 'phrase-extract/ExtractedRule.h')
-rw-r--r--phrase-extract/ExtractedRule.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/phrase-extract/ExtractedRule.h b/phrase-extract/ExtractedRule.h
index e879b96c4..2eeed1d30 100644
--- a/phrase-extract/ExtractedRule.h
+++ b/phrase-extract/ExtractedRule.h
@@ -26,7 +26,7 @@
#include <sstream>
#include <map>
-#include "extract-ghkm/PhraseOrientation.h"
+#include "PhraseOrientation.h"
namespace MosesTraining
{
@@ -51,8 +51,8 @@ public:
int endS;
float count;
double pcfgScore;
- Syntax::GHKM::PhraseOrientation::REO_CLASS l2rOrientation;
- Syntax::GHKM::PhraseOrientation::REO_CLASS r2lOrientation;
+ PhraseOrientation::REO_CLASS l2rOrientation;
+ PhraseOrientation::REO_CLASS r2lOrientation;
ExtractedRule(int sT, int eT, int sS, int eS)
: source()
@@ -71,8 +71,8 @@ public:
, endS(eS)
, count(0)
, pcfgScore(0.0)
- , l2rOrientation(Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN)
- , r2lOrientation(Syntax::GHKM::PhraseOrientation::REO_CLASS_UNKNOWN)
+ , l2rOrientation(PhraseOrientation::REO_CLASS_UNKNOWN)
+ , r2lOrientation(PhraseOrientation::REO_CLASS_UNKNOWN)
{ }
};