Add some comments for the type of search algorithms

This commit is contained in:
Tetsuo Kiso 2013-04-30 15:00:06 +09:00
parent b9d68e90c7
commit 9bfb965c2f

View File

@ -173,11 +173,16 @@ enum ParsingAlgorithm {
};
enum SearchAlgorithm {
Normal = 0
,CubePruning = 1
,CubeGrowing = 2
,ChartDecoding= 3
,NormalBatch = 4
// standard beam search for phrase-based models.
Normal = 0
,CubePruning = 1
// N.B. not implemented.
,CubeGrowing = 2
,ChartDecoding = 3
,NormalBatch = 4
,ChartIncremental = 5
};