Skip to content

Commit 12fed8a

Browse files
committed
do not ask for comparison on terms and formulas
1 parent 66707b5 commit 12fed8a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/core/expr_intf.ml

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module type S = sig
1616
type t
1717
val hash : t -> int
1818
val equal : t -> t -> bool
19-
val compare : t -> t -> int
2019
val print : Format.formatter -> t -> unit
2120
end
2221

@@ -25,7 +24,6 @@ module type S = sig
2524
type t
2625
val hash : t -> int
2726
val equal : t -> t -> bool
28-
val compare : t -> t -> int
2927
val print : Format.formatter -> t -> unit
3028
end
3129

src/core/formula_intf.ml

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ module type S = sig
3434

3535
val hash : t -> int
3636
val equal : t -> t -> bool
37-
val compare : t -> t -> int
38-
(** Usual hash and comparison functions. Given to Map and Hash functors. *)
37+
(** Usual hash and comparison functions. Given to Hashtbl functors. *)
3938

4039
val print : Format.formatter -> t -> unit
4140
(** Printing function used for debugging. *)

0 commit comments

Comments
 (0)