Module Libzipperposition.Cut_form
Universally Quantified Conjunction of Clauses
type var
= Logtk.Term.var
type term
= Logtk.Term.t
type clause
= Logtk.Literals.t
type form
= clause list
type t
= private
{
vars : Logtk.Term.VarSet.t;
cs : form;
}
A formula of the form
forall vars. \bigand_i C_i
. TheC_i
are clauses with free variables invars
type cut_form
= t
val make : Logtk.Literals.t list -> t
val trivial : t
include Logtk.Interfaces.PRINT with type t := t
val pp_tstp : t CCFormat.printer
val pp_zf : t CCFormat.printer
val vars : t -> Logtk.Term.VarSet.t
val cs : t -> Logtk.Literals.t list
val ind_vars : t -> var list
subset of
vars
that have an inductive type
val apply_subst : Logtk.Subst.Renaming.t -> Logtk.Subst.t -> t Logtk.Scoped.t -> t
val are_variant : t -> t -> bool
Are these two cut formulas alpha-equivalent?
val to_s_form : t -> Logtk.TypedSTerm.Form.t
Convert to input formula
module Pos : sig ... end
module Seq : sig ... end