Smtlib2.Printermodule Env : Dolmen_intf.Env.Print with type name := Dolmen_std.Name.tmodule S : Dolmen_intf.View.Sexpr.S with type id := Dolmen_std.Id.tmodule V :
Dolmen_intf.View.TFF.S
with type ty = Env.ty
and type ty_var = Env.ty_var
and type ty_cst = Env.ty_cst
and type term = Env.term
and type term_var = Env.term_var
and type term_cst = Env.term_cstval add_named : Env.t -> Env.term_cst -> Env.term -> Env.tAdd a `:named` definition to the env.
Set a splitting function for decimals.
val match_prop_literal :
Env.term ->
[ `Cst of Env.term_cst | `Neg of Env.term_cst | `Not_a_prop_literal ]Match against prop literals.
val echo : Env.t -> Stdlib.Format.formatter -> string -> unitval set_logic : Env.t -> Stdlib.Format.formatter -> string -> unitPrint a set-logic statement.
val pop : Env.t -> Stdlib.Format.formatter -> int -> unitpop fmt n prints a statement that pops `n` levels.
val push : Env.t -> Stdlib.Format.formatter -> int -> unitpush fmt n prints a statement that pushes `n` levels.
val declare_sort : Env.t -> Stdlib.Format.formatter -> Env.ty_cst -> unitDeclare a sort, i.e. a type constant.
val declare_datatype :
Env.t ->
Stdlib.Format.formatter ->
(Env.ty_cst
* Env.ty_var list
* (Env.term_cst * (Env.ty * Env.term_cst) list) list) ->
unitDeclare a single datatype.
val declare_datatypes :
Env.t ->
Stdlib.Format.formatter ->
(Env.ty_cst
* Env.ty_var list
* (Env.term_cst * (Env.ty * Env.term_cst) list) list)
list ->
unitDeclare multiple mutually recursive datatypes.
val declare_fun : Env.t -> Stdlib.Format.formatter -> Env.term_cst -> unitDeclare a function, i.e. a term constant. This will use either the `declare-fun` or the `declare-const` statement depending on the actualy type of the function.
val define_sort :
Env.t ->
Stdlib.Format.formatter ->
(Env.ty_cst * Env.ty_var list * Env.ty) ->
unitval define_fun :
Env.t ->
Stdlib.Format.formatter ->
(Env.term_cst * Env.ty_var list * Env.term_var list * Env.term) ->
unitval define_fun_rec :
Env.t ->
Stdlib.Format.formatter ->
(Env.term_cst * Env.ty_var list * Env.term_var list * Env.term) ->
unitval define_funs_rec :
Env.t ->
Stdlib.Format.formatter ->
(Env.term_cst * Env.ty_var list * Env.term_var list * Env.term) list ->
unitval check_sat : Env.t -> Stdlib.Format.formatter -> unit -> unitval reset : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `reset` statement.
val reset_assertions : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `reset-assertion` statement.
val get_unsat_core : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `get-unsat-core` statement.
val get_unsat_assumptions : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `get-unsat-assumptions` statement.
val get_proof : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `get-proof` statement.
val get_model : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `get-model` statement.
val get_assertions : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `get-assertions` statement.
val get_assignment : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint a `get-assignment` statement.
val exit : Env.t -> Stdlib.Format.formatter -> unit -> unitPrint an `exit` statement.