mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
37 lines
1.4 KiB
OCaml
37 lines
1.4 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Cubicle *)
|
|
(* Combining model checking algorithms and SMT solvers *)
|
|
(* *)
|
|
(* Sylvain Conchon and Alain Mebsout *)
|
|
(* Stephane Lescuyer *)
|
|
(* INRIA, Universite Paris-Sud 11 *)
|
|
(* *)
|
|
(* Copyright 2011. This file is distributed under the terms of the *)
|
|
(* Apache Software License version 2.0 *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
type t
|
|
|
|
type exp
|
|
|
|
val empty : t
|
|
|
|
val singleton : Solver_types.atom -> t
|
|
|
|
val union : t -> t -> t
|
|
|
|
val merge : t -> t -> t
|
|
|
|
val iter_atoms : (Solver_types.atom -> unit) -> t -> unit
|
|
|
|
val fold_atoms : (Solver_types.atom -> 'a -> 'a ) -> t -> 'a -> 'a
|
|
|
|
val fresh_exp : unit -> int
|
|
|
|
val remove_fresh : int -> t -> t option
|
|
|
|
val add_fresh : int -> t -> t
|
|
|
|
val print : Format.formatter -> t -> unit
|