Exemple #1
0
 static IntType invert(IntType x)
 { return x == 0 ? 0 : invert_euclidian(x); }
Exemple #2
0
 static IntType invert(IntType x)
 {
     return x == 0 ? 0 : (m == 0? invert_euclidian0(x) : invert_euclidian(x));
 }