Module Libzipperposition.ClauseContext
Clause context
A clause with a "hole" in it. Filling the whole with a term t is called "applying the context to t".
The point is to relate different applications of the same context.
type term= Logtk.Term.ttype subst= Logtk.Subst.ttype tA context is represented as a regular array of literals, containing at least one specific variable
x, paired with this variablex. Applying the context is a mere substitution
val compare : t -> t -> intval equal : t -> t -> boolval hash : t -> intval make : Logtk.Literals.t -> var:Logtk.Term.var -> tMake a context from a var and literals containing this var.
- raises Assert_failure
 if the variable isn't present in any literal
val extract : Logtk.Literals.t -> term -> t optionextract lits treturnsNoneiftdoesn't occur inlits. Otherwise, it creates a fresh varx, replacestwithxwithinlits, and returns the corresponding context. Basically, ifextract lits t = Some cthenapply c t = lits
val extract_exn : Logtk.Literals.t -> term -> tUnsafe version of
extract.- raises Invalid_argument
 if the term is not to be found within the lits
val trivial : Logtk.Literals.t -> term -> tTrivial context, that contains 0 holes.
val apply : t -> term -> Logtk.Literals.tapply c tfills the hole ofcwith the given termt.tandcshare no free variables.
val apply_same_scope : t -> term -> Logtk.Literals.tSame as
apply, but now variables from the context and variables from the term live in the same scope
val raw_lits : t -> Logtk.Literals.tgive access to the underlying literals. Careful not to depend on the variable's actual name.
val pp : t CCFormat.printer