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@gmail.com>2014-12-14 16:19:38 +0300
committerHieu Hoang <hieuhoang@gmail.com>2014-12-14 16:19:38 +0300
commit7c159b3d5881ec18bc87a99ddc87a10bebf486c7 (patch)
treecfea9edb98a9ba059d993530274ec4a86b9d513a /moses/Search.cpp
parent10d41d025e257546fde4fa7ebee3128c30bc769b (diff)
rename ChartDecoding -> CYKPlus. Comment out CubeGrowing, not implementedmerge-cmd
Diffstat (limited to 'moses/Search.cpp')
-rw-r--r--moses/Search.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/moses/Search.cpp b/moses/Search.cpp
index 030071021..f6b8dc53a 100644
--- a/moses/Search.cpp
+++ b/moses/Search.cpp
@@ -25,8 +25,6 @@ Search *Search::CreateSearch(Manager& manager, const InputType &source,
return new SearchNormal(manager,source, transOptColl);
case CubePruning:
return new SearchCubePruning(manager, source, transOptColl);
- case CubeGrowing:
- return NULL;
case NormalBatch:
return new SearchNormalBatch(manager, source, transOptColl);
default: