Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2ff4a2df1d44ea2cd2e29245d61032200719fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
lib_LIBRARIES = libmoses.a
AM_CPPFLAGS = -W -Wall -ffor-scope -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES 
libmoses_a_SOURCES = \
	ConfusionNet.cpp \
	DecodeStep.cpp \
	DecodeStep_Generation.cpp \
	DecodeStep_Translation.cpp \
	Dictionary.cpp \
	DistortionOrientation.cpp \
	DummyScoreProducers.cpp \
	Factor.cpp \
	FactorArrayWrapper.cpp \
	FactorCollection.cpp \
	FactorTypeSet.cpp \
	GenerationDictionary.cpp \
	hash.cpp \
	Hypothesis.cpp \
	HypothesisCollection.cpp \
	InputType.cpp \
	InputFileStream.cpp \
	InputOutput.cpp \
	LMList.cpp \
	LanguageModel.cpp \
	LanguageModelFactory.cpp \
	LanguageModelMultiFactor.cpp \
	LanguageModelSingleFactor.cpp \
	LanguageModel_Chunking.cpp \
	LatticePath.cpp \
	LexicalReordering.cpp \
	Manager.cpp \
	md5.cpp \
	mempool.cpp \
	Parameter.cpp \
	PartialTranslOptColl.cpp \
	Phrase.cpp \
	PhraseDictionary.cpp \
	PhraseDictionaryBase.cpp \
	PhraseDictionaryNode.cpp \
	PhraseDictionaryTree.cpp \
	PhraseDictionaryTreeAdaptor.cpp \
	PhraseReference.cpp \
	ScoreComponentCollection.cpp \
	ScoreIndexManager.cpp \
	ScoreProducer.cpp \
	Sentence.cpp \
	SentenceStats.cpp \
	StaticData.cpp \
	TargetPhrase.cpp \
	TargetPhraseCollection.cpp \
	TranslationOption.cpp \
	TranslationOptionCollection.cpp \
	TranslationOptionCollectionText.cpp \
	TranslationOptionCollectionConfusionNet.cpp \
	UserMessage.cpp \
	Util.cpp \
	Word.cpp \
	WordsBitmap.cpp \
	WordsRange.cpp


if INTERNAL_LM
libmoses_a_SOURCES += NGramCollection.cpp LanguageModel_Internal.cpp
endif

if SRI_LM
libmoses_a_SOURCES += LanguageModel_SRI.cpp
endif

if IRST_LM
libmoses_a_SOURCES += LanguageModel_IRST.cpp
endif