Skip to content

Commit

Permalink
do not ask for comparison on terms and formulas
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Aug 3, 2016
1 parent 66707b5 commit 12fed8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions src/core/expr_intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
3 changes: 1 addition & 2 deletions src/core/formula_intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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. *)
Expand Down

0 comments on commit 12fed8a

Please sign in to comment.