mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
do not ask for comparison on terms and formulas
This commit is contained in:
parent
66707b58fc
commit
12fed8a811
2 changed files with 1 additions and 4 deletions
|
|
@ -16,7 +16,6 @@ module type S = sig
|
|||
type t
|
||||
val hash : t -> int
|
||||
val equal : t -> t -> bool
|
||||
val compare : t -> t -> int
|
||||
val print : Format.formatter -> t -> unit
|
||||
end
|
||||
|
||||
|
|
@ -25,7 +24,6 @@ module type S = sig
|
|||
type t
|
||||
val hash : t -> int
|
||||
val equal : t -> t -> bool
|
||||
val compare : t -> t -> int
|
||||
val print : Format.formatter -> t -> unit
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@ module type S = sig
|
|||
|
||||
val hash : t -> int
|
||||
val equal : t -> t -> bool
|
||||
val compare : t -> t -> int
|
||||
(** Usual hash and comparison functions. Given to Map and Hash functors. *)
|
||||
(** Usual hash and comparison functions. Given to Hashtbl functors. *)
|
||||
|
||||
val print : Format.formatter -> t -> unit
|
||||
(** Printing function used for debugging. *)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue