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/coq-core.proofs/Logic/index.html

Module LogicSource

Legacy proof engine. Do not use in newly written code.

check respectively means:\\ Intro: check that the name does not exist\\ Intro_after: check that the name does not exist and that variables in its type does not escape their scope\\ Intro_replacing: check that the name does not exist and that variables in its type does not escape their scope\\ Convert_hyp: check that the name exist and that its type is convertible\\

Refiner errors.
Sourcetype refiner_error =
  1. | UnresolvedBindings of Names.Name.t list
  2. | CannotApply of EConstr.t * EConstr.t
  3. | NonLinearProof of EConstr.t
  4. | IntroNeedsProduct
  5. | NoSuchHyp of Names.Id.t
Sourceexception RefinerError of Environ.env * Evd.evar_map * refiner_error
Sourceval error_no_such_hypothesis : Environ.env -> Evd.evar_map -> Names.Id.t -> 'a

Move destination for hypothesis

Sourcetype 'id move_location =
  1. | MoveAfter of 'id
  2. | MoveBefore of 'id
  3. | MoveFirst
  4. | MoveLast
    (*

    can be seen as "no move" when doing intro

    *)
Sourceval pr_move_location : ('a -> Pp.t) -> 'a move_location -> Pp.t
Sourceval convert_hyp : check:bool -> reorder:bool -> Environ.env -> Evd.evar_map -> EConstr.named_declaration -> Environ.named_context_val
Sourcetype cannot_move_hyp
Sourceexception CannotMoveHyp of cannot_move_hyp
OCaml

Innovation. Community. Security.

On This Page
  1. Refiner errors.