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
AgeCommit message (Collapse)Author
2013-05-29beautifyHieu Hoang
2012-07-01namespace all classes in mert directoryHieu Hoang
2012-04-05Fix a grammar error; add more test case.Tetsuo Kiso
- Fix a warning, too.
2012-04-04Add a test case for EndsWith().Tetsuo Kiso
2012-02-20Bug fix: tokenizer used in mert; add unit tests for that.Tetsuo Kiso
When tokenizing a string delimited by spaces (say, "9 9 8 7 ") with Tokenize(), resulting a sequence of strings are {"9", "9", "8", "7", "" }, which is different from we have expected. We are not interested in empty strings. This commit fix this issue, and add unit tests for the tokenize functions.