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