package binsec

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
type output =
  1. | Nil
  2. | Model of Smt_model.t
  3. | Sat of Formula.status
  4. | Values of (Smtlib.term * Smtlib.term) list
val pp : Format.formatter -> t -> unit
val create : ?file:string -> ?timeout:int -> Prover.t -> t
val destroy : t -> unit
val run : t -> Command.command -> output
val put_entry : t -> Formula.entry -> unit
val check_sat : t -> Formula.status
val get_model : t -> Smt_model.t
val get_value : t -> Formula.term -> (Smtlib.term * Smtlib.term) list