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-12Add const to return values of overloaded operators.Tetsuo Kiso
* This commit prevents developers from doing mistakes like: Point p1, p2, p4; if (p1 + p2 = p4) { // Bang! We actually wanted to compare // the result of two points: (p1 + p2 == p4). // do something. } See, e.g., http://www.gotw.ca/gotw/006.htm for details. * Add more test cases according to this change. * Move a helper function to compare floating point numbers to Util.h.
2012-04-12Reduce the number of calling the numeric_limits constructor.Tetsuo Kiso
- Create a test module for Point. - Add test cases.