move Score3Parser to TranslationModel/

This commit is contained in:
Hieu Hoang 2012-11-27 17:09:23 +00:00
parent 1aae9aa23c
commit ae8a48b022
18 changed files with 4 additions and 74 deletions

View File

@ -806,11 +806,6 @@
<type>1</type> <type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/RuleCubeQueue.h</locationURI> <locationURI>PARENT-3-PROJECT_LOC/moses/RuleCubeQueue.h</locationURI>
</link> </link>
<link>
<name>Scope3Parser</name>
<type>2</type>
<locationURI>virtual:/virtual</locationURI>
</link>
<link> <link>
<name>ScoreComponentCollection.cpp</name> <name>ScoreComponentCollection.cpp</name>
<type>1</type> <type>1</type>
@ -1601,71 +1596,6 @@
<type>2</type> <type>2</type>
<locationURI>virtual:/virtual</locationURI> <locationURI>virtual:/virtual</locationURI>
</link> </link>
<link>
<name>Scope3Parser/ApplicableRuleTrie.cpp</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/ApplicableRuleTrie.cpp</locationURI>
</link>
<link>
<name>Scope3Parser/ApplicableRuleTrie.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/ApplicableRuleTrie.h</locationURI>
</link>
<link>
<name>Scope3Parser/IntermediateVarSpanNode.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/IntermediateVarSpanNode.h</locationURI>
</link>
<link>
<name>Scope3Parser/Parser.cpp</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/Parser.cpp</locationURI>
</link>
<link>
<name>Scope3Parser/Parser.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/Parser.h</locationURI>
</link>
<link>
<name>Scope3Parser/SentenceMap.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/SentenceMap.h</locationURI>
</link>
<link>
<name>Scope3Parser/StackLattice.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/StackLattice.h</locationURI>
</link>
<link>
<name>Scope3Parser/StackLatticeBuilder.cpp</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/StackLatticeBuilder.cpp</locationURI>
</link>
<link>
<name>Scope3Parser/StackLatticeBuilder.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/StackLatticeBuilder.h</locationURI>
</link>
<link>
<name>Scope3Parser/StackLatticeSearcher.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/StackLatticeSearcher.h</locationURI>
</link>
<link>
<name>Scope3Parser/VarSpanNode.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/VarSpanNode.h</locationURI>
</link>
<link>
<name>Scope3Parser/VarSpanTrieBuilder.cpp</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/VarSpanTrieBuilder.cpp</locationURI>
</link>
<link>
<name>Scope3Parser/VarSpanTrieBuilder.h</name>
<type>1</type>
<locationURI>PARENT-3-PROJECT_LOC/moses/Scope3Parser/VarSpanTrieBuilder.h</locationURI>
</link>
<link> <link>
<name>CompactPT/bin/gcc-4.6</name> <name>CompactPT/bin/gcc-4.6</name>
<type>2</type> <type>2</type>

View File

@ -27,12 +27,12 @@ if $(have-clock[2]) = 0 {
lib moses : lib moses :
[ glob [ glob
*.cpp *.cpp
Scope3Parser/*.cpp
CYKPlusParser/*.cpp CYKPlusParser/*.cpp
TranslationModel/*.cpp TranslationModel/*.cpp
TranslationModel/fuzzy-match/*.cpp TranslationModel/fuzzy-match/*.cpp
TranslationModel/DynSAInclude/*.cpp TranslationModel/DynSAInclude/*.cpp
TranslationModel/RuleTable/*.cpp TranslationModel/RuleTable/*.cpp
TranslationModel/Scope3Parser/*.cpp
: #exceptions : #exceptions
ThreadPool.cpp ThreadPool.cpp
SyntacticLanguageModel.cpp SyntacticLanguageModel.cpp

View File

@ -85,7 +85,7 @@ if $(with-ldhtlm) {
} }
#ORLM is always compiled but needs special headers #ORLM is always compiled but needs special headers
obj ORLM.o : ORLM.cpp ..//headers ../DynSAInclude//dynsa : : : <include>../DynSAInclude ; obj ORLM.o : ORLM.cpp ..//headers ../TranslationModel/DynSAInclude//dynsa : : : <include>../TranslationModel/DynSAInclude ;
#The factory needs the macros LM_IRST etc to know which ones to use. #The factory needs the macros LM_IRST etc to know which ones to use.
obj Factory.o : Factory.cpp ..//headers $(dependencies) : <include>../DynSAInclude <dependency>$(LM-LOG) ; obj Factory.o : Factory.cpp ..//headers $(dependencies) : <include>../DynSAInclude <dependency>$(LM-LOG) ;

View File

@ -1 +1 @@
alias dynsa : ../../util//kenutil ..//headers : : : <include>. ; alias dynsa : ../../../util//kenutil ../..//headers : : : <include>. ;

View File

@ -18,7 +18,7 @@
***********************************************************************/ ***********************************************************************/
#include "moses/NonTerminal.h" #include "moses/NonTerminal.h"
#include "moses/Scope3Parser/Parser.h" #include "moses/TranslationModel/Scope3Parser/Parser.h"
#include "moses/StaticData.h" #include "moses/StaticData.h"
#include "moses/TargetPhrase.h" #include "moses/TargetPhrase.h"
#include "moses/TargetPhraseCollection.h" #include "moses/TargetPhraseCollection.h"