feat: ask less from values in mcsat

This commit is contained in:
Simon Cruanes 2019-01-26 13:07:46 -06:00 committed by Guillaume Bury
parent 4fbaae7d2d
commit a58c940c6d

View file

@ -174,13 +174,6 @@ module type EXPR = sig
type t
(** The type of semantic values (domain elements) *)
val equal : t -> t -> bool
(** Equality over values. *)
val hash : t -> int
(** Hashing function for values. Should be such that two terms equal according
to {!equal} have the same hash. *)
val pp : t printer
(** Printing function used among other for debugging. *)
end