Exemple #1
0
 public static bool gteq_bit(Bit x, Bit y) { return x.eq(y) || !x.lteq(y); }
Exemple #2
0
 public static bool neq_bit(Bit x, Bit y) { return !x.eq(y); }
Exemple #3
0
 public static bool lt_bit(Bit x, Bit y) { return !x.eq(y) && x.lteq(y); }