mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-07 11:45:41 -05:00
28 lines
1.2 KiB
OCaml
28 lines
1.2 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Cubicle *)
|
|
(* Combining model checking algorithms and SMT solvers *)
|
|
(* *)
|
|
(* Mohamed Iguernelala *)
|
|
(* Universite Paris-Sud 11 *)
|
|
(* *)
|
|
(* Copyright 2011. This file is distributed under the terms of the *)
|
|
(* Apache Software License version 2.0 *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
exception Sat
|
|
exception Unsat of Solver_types.clause list
|
|
|
|
module Make (Dummy : sig end) : sig
|
|
type state
|
|
|
|
val solve : unit -> unit
|
|
val assume : Literal.LT.t list list -> cnumber : int -> unit
|
|
val clear : unit -> unit
|
|
|
|
val eval : Literal.LT.t -> bool
|
|
val save : unit -> state
|
|
val restore : state -> unit
|
|
|
|
end
|