smtml
Ty.Relop
smtml.prelude
type t =
| Eq
Equality.
| Ne
Inequality.
| Lt
Less than.
| LtU
Unsigned less than.
| Gt
Greater than.
| GtU
Unsigned greater than.
| Le
Less than or equal.
| LeU
Unsigned less than or equal.
| Ge
Greater than or equal.
| GeU
Unsigned greater than or equal.
The type t represents relational operations.
t
val equal : t -> t -> bool
equal op1 op2 checks if relational operations op1 and op2 are equal.
equal op1 op2
op1
op2
val pp : t Fmt.t
pp fmt op pretty-prints the relational operation op using the formatter fmt.
pp fmt op
op
fmt