mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-25 21:03:22 +03:00
move Score3Parser to TranslationModel/
This commit is contained in:
parent
1aae9aa23c
commit
ae8a48b022
@ -806,11 +806,6 @@
|
||||
<type>1</type>
|
||||
<locationURI>PARENT-3-PROJECT_LOC/moses/RuleCubeQueue.h</locationURI>
|
||||
</link>
|
||||
<link>
|
||||
<name>Scope3Parser</name>
|
||||
<type>2</type>
|
||||
<locationURI>virtual:/virtual</locationURI>
|
||||
</link>
|
||||
<link>
|
||||
<name>ScoreComponentCollection.cpp</name>
|
||||
<type>1</type>
|
||||
@ -1601,71 +1596,6 @@
|
||||
<type>2</type>
|
||||
<locationURI>virtual:/virtual</locationURI>
|
||||
</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>
|
||||
<name>CompactPT/bin/gcc-4.6</name>
|
||||
<type>2</type>
|
||||
|
@ -27,12 +27,12 @@ if $(have-clock[2]) = 0 {
|
||||
lib moses :
|
||||
[ glob
|
||||
*.cpp
|
||||
Scope3Parser/*.cpp
|
||||
CYKPlusParser/*.cpp
|
||||
TranslationModel/*.cpp
|
||||
TranslationModel/fuzzy-match/*.cpp
|
||||
TranslationModel/DynSAInclude/*.cpp
|
||||
TranslationModel/RuleTable/*.cpp
|
||||
TranslationModel/Scope3Parser/*.cpp
|
||||
: #exceptions
|
||||
ThreadPool.cpp
|
||||
SyntacticLanguageModel.cpp
|
||||
|
@ -85,7 +85,7 @@ if $(with-ldhtlm) {
|
||||
}
|
||||
|
||||
#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.
|
||||
obj Factory.o : Factory.cpp ..//headers $(dependencies) : <include>../DynSAInclude <dependency>$(LM-LOG) ;
|
||||
|
@ -1 +1 @@
|
||||
alias dynsa : ../../util//kenutil ..//headers : : : <include>. ;
|
||||
alias dynsa : ../../../util//kenutil ../..//headers : : : <include>. ;
|
||||
|
@ -18,7 +18,7 @@
|
||||
***********************************************************************/
|
||||
|
||||
#include "moses/NonTerminal.h"
|
||||
#include "moses/Scope3Parser/Parser.h"
|
||||
#include "moses/TranslationModel/Scope3Parser/Parser.h"
|
||||
#include "moses/StaticData.h"
|
||||
#include "moses/TargetPhrase.h"
|
||||
#include "moses/TargetPhraseCollection.h"
|
||||
|
Loading…
Reference in New Issue
Block a user