move lex ro into its own directory

This commit is contained in:
Hieu Hoang 2016-03-22 14:16:02 +00:00
parent 95f252aa37
commit d7e24ecc81
5 changed files with 22 additions and 20 deletions

View File

@ -17,7 +17,7 @@
#include "WordPenalty.h" #include "WordPenalty.h"
#include "PhrasePenalty.h" #include "PhrasePenalty.h"
#include "Distortion.h" #include "Distortion.h"
#include "LexicalReordering.h" #include "LexicalReordering/LexicalReordering.h"
#include "../TranslationModel/PhraseTableMemory.h" #include "../TranslationModel/PhraseTableMemory.h"
#include "../TranslationModel/ProbingPT.h" #include "../TranslationModel/ProbingPT.h"
#include "../TranslationModel/UnknownWordPenalty.h" #include "../TranslationModel/UnknownWordPenalty.h"

View File

@ -7,13 +7,13 @@
#include "../LM/KENLM.h" #include "../LM/KENLM.h"
#include "../LM/LanguageModel.h" #include "../LM/LanguageModel.h"
#include "../FF/Distortion.h" #include "Distortion.h"
#include "../FF/LexicalReordering.h" #include "LexicalReordering/LexicalReordering.h"
#include "../FF/PhrasePenalty.h" #include "PhrasePenalty.h"
#include "../FF/WordPenalty.h" #include "WordPenalty.h"
#include "../FF/SkeletonStatefulFF.h" #include "SkeletonStatefulFF.h"
#include "../FF/SkeletonStatelessFF.h" #include "SkeletonStatelessFF.h"
using namespace std; using namespace std;

View File

@ -7,14 +7,14 @@
#include <boost/foreach.hpp> #include <boost/foreach.hpp>
#include "LexicalReordering.h" #include "LexicalReordering.h"
#include "../TranslationModel/PhraseTable.h" #include "../../TranslationModel/PhraseTable.h"
#include "../System.h" #include "../../System.h"
#include "../PhraseImpl.h" #include "../../PhraseImpl.h"
#include "../PhraseBased/Manager.h" #include "../../PhraseBased/Manager.h"
#include "../PhraseBased/Hypothesis.h" #include "../../PhraseBased/Hypothesis.h"
#include "../legacy/InputFileStream.h" #include "../../legacy/InputFileStream.h"
#include "../legacy/Util2.h" #include "../../legacy/Util2.h"
#include "../legacy/CompactPT/LexicalReorderingTableCompact.h" #include "../../legacy/CompactPT/LexicalReorderingTableCompact.h"
using namespace std; using namespace std;

View File

@ -8,10 +8,10 @@
#pragma once #pragma once
#include <vector> #include <vector>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include "StatefulFeatureFunction.h" #include "../StatefulFeatureFunction.h"
#include "../TypeDef.h" #include "../../TypeDef.h"
#include "../Phrase.h" #include "../../Phrase.h"
#include "../legacy/Range.h" #include "../../legacy/Range.h"
namespace Moses2 { namespace Moses2 {

View File

@ -24,13 +24,15 @@ alias deps : ../../..//z ../../..//boost_iostreams ../../..//boost_filesystem .
FF/FeatureFunction.cpp FF/FeatureFunction.cpp
FF/FeatureFunctions.cpp FF/FeatureFunctions.cpp
FF/FeatureRegistry.cpp FF/FeatureRegistry.cpp
FF/LexicalReordering.cpp
FF/PhrasePenalty.cpp FF/PhrasePenalty.cpp
FF/SkeletonStatefulFF.cpp FF/SkeletonStatefulFF.cpp
FF/SkeletonStatelessFF.cpp FF/SkeletonStatelessFF.cpp
FF/StatefulFeatureFunction.cpp FF/StatefulFeatureFunction.cpp
FF/StatelessFeatureFunction.cpp FF/StatelessFeatureFunction.cpp
FF/WordPenalty.cpp FF/WordPenalty.cpp
FF/LexicalReordering/LexicalReordering.cpp
# LM/LanguageModelDALM.cpp # LM/LanguageModelDALM.cpp
LM/LanguageModel.cpp LM/LanguageModel.cpp
LM/KENLM.cpp LM/KENLM.cpp