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:
authorAles Tamchyna <tamchyna@ufal.mff.cuni.cz>2015-01-08 14:32:34 +0300
committerAles Tamchyna <tamchyna@ufal.mff.cuni.cz>2015-01-08 14:32:34 +0300
commitcf4608163f8cc33fd2d19956704fb4480f4aa175 (patch)
treef58e4a4b9d93d04ceea619dbd94f33a799d16d71 /moses/IOWrapper.cpp
parent93702844e59017df0b4fe6eca0ff0e4369756932 (diff)
parentd1677c75087d8100c315ddc0587bc72cfcae4342 (diff)
Merge branch 'vw_integration' of github.com:moses-smt/mosesdecoder into vw_integration
Diffstat (limited to 'moses/IOWrapper.cpp')
-rw-r--r--moses/IOWrapper.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/moses/IOWrapper.cpp b/moses/IOWrapper.cpp
index a5736fb31..2df57a674 100644
--- a/moses/IOWrapper.cpp
+++ b/moses/IOWrapper.cpp
@@ -272,6 +272,9 @@ bool IOWrapper::ReadInput(InputTypeEnum inputType, InputType*& source)
case TreeInputType:
source = GetInput(new TreeInput);
break;
+ case TabbedSentenceInput:
+ source = GetInput(new TabbedSentence);
+ break;
default:
TRACE_ERR("Unknown input type: " << inputType << "\n");
}