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:
authorHieu Hoang <hieuhoang@Hieus-MacBook.local>2011-11-07 17:45:05 +0400
committerHieu Hoang <hieuhoang@Hieus-MacBook.local>2011-11-07 17:45:05 +0400
commitae5e39fa86ddadd988ad3f2f0a0bcd7998264433 (patch)
treeafa6e5d36240a70e403700a2bc62c5833917a12c /moses-chart-cmd
parente0016712bed8bb90cfc7c9e02367f44693946847 (diff)
delete premature lattice for scfg
Diffstat (limited to 'moses-chart-cmd')
-rw-r--r--moses-chart-cmd/src/Main.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/moses-chart-cmd/src/Main.cpp b/moses-chart-cmd/src/Main.cpp
index 0606b1608..b99b0d983 100644
--- a/moses-chart-cmd/src/Main.cpp
+++ b/moses-chart-cmd/src/Main.cpp
@@ -48,7 +48,6 @@ POSSIBILITY OF SUCH DAMAGE.
#include "Sentence.h"
#include "ConfusionNet.h"
#include "WordLattice.h"
-#include "WordLattice2.h"
#include "TreeInput.h"
#include "TranslationAnalysis.h"
#include "mbr.h"
@@ -159,9 +158,6 @@ bool ReadInput(IOWrapper &ioWrapper, InputTypeEnum inputType, InputType*& source
case TreeInputType:
source = ioWrapper.GetInput(new TreeInput(Input));
break;
- case WordLatticeInput2:
- source = ioWrapper.GetInput(new WordLattice2);
- break;
default:
TRACE_ERR("Unknown input type: " << inputType << "\n");
}