package coq-core

  1. Overview
  2. Docs
The Coq Proof Assistant -- Core Binaries and Tools

Install

Dune Dependency

Authors

Maintainers

Sources

coq-8.20.0.tar.gz
md5=66e57ea55275903bef74d5bf36fbe0f1
sha512=1a7eac6e2f58724a3f9d68bbb321e4cfe963ba1a5551b9b011db4b3f559c79be433d810ff262593d753770ee41ea68fbd6a60daa1e2319ea00dff64c8851d70b

doc/cc_plugin/Cc_plugin/Ccproof/index.html

Module Cc_plugin.CcproofSource

Sourcetype rule =
  1. | Ax of Ccalgo.axiom
    (*

    if ⊢ t = u :: A, then ⊢ t = u :: A

    *)
  2. | SymAx of Ccalgo.axiom
    (*

    if ⊢ t = u : A, then ⊢ u = t :: A

    *)
  3. | Refl of Ccalgo.ATerm.t
  4. | Trans of proof * proof
    (*

    ⊢ t = u :: A -> ⊢ u = v :: A -> ⊢ t = v :: A

    *)
  5. | Congr of proof * proof
    (*

    ⊢ f = g :: forall x : A, B -> ⊢ t = u :: A -> f t = g u :: B

    Assumes that B

    ≡ Bu for this to make sense!

    *)
  6. | Inject of proof * Constr.pconstructor * int * int
    (*

    ⊢ ci v = ci w :: Ind(args) -> ⊢ v = w :: T where T is the type of the n-th argument of ci, assuming they coincide

    *)
Sourceand proof = private {
  1. p_lhs : Ccalgo.ATerm.t;
  2. p_rhs : Ccalgo.ATerm.t;
  3. p_rule : rule;
}

Main proof building function

Sourceval build_proof : Environ.env -> Evd.evar_map -> Ccalgo.forest -> [ `Discr of int * Ccalgo.pa_constructor * int * Ccalgo.pa_constructor | `Prove of int * int ] -> proof
OCaml

Innovation. Community. Security.