예제 #1
0
파일: random.hpp 프로젝트: rtsuk/fmsync
 static IntType invert(IntType x)
 { return x == 0 ? 0 : invert_euclidian(x); }
예제 #2
0
 static IntType invert(IntType x)
 {
     return x == 0 ? 0 : (m == 0? invert_euclidian0(x) : invert_euclidian(x));
 }