package coq-waterproof

  1. Overview
  2. Docs
Coq proofs in a style that resembles non-mechanized mathematical proofs

Install

dune-project
 Dependency

Authors

Maintainers

Sources

3.1.0+9.1.tar.gz
md5=83359b33c0c6e1fb87f938280cd4e0a2
sha512=d0b0d674e9b5c731b54779d9b77b61f6142d561b05e8c06f2afd0a62e507afedd7696754d29c31522fee996a1f6c6a5d158b250ab04fd9dd5bd812bb99d3a97f

doc/coq-waterproof.plugin/Waterproof/Wp_auto/index.html

Module Waterproof.Wp_autoSource

Sourceval exists_evaluable_reference : Environ.env -> Evaluable.t -> bool

Same function as Auto.exists_evaluable_reference

Sourceval pr_info_nop : unit -> unit

Prints "idtac" if the log field is true

Sourceval tclTryDbg : (unit -> unit) -> Backtracking.trace Proofview.tactic -> Backtracking.trace Proofview.tactic

Tries the given tactic and calls an info printer if it fails

Sourceval hintmap_of : Environ.env -> Evd.evar_map -> Names.Id.Pred.t -> Evd.econstr -> Hints.hint_db -> Hints.FullHint.t list

Creates a function that takes a hint database and returns a hint list

Searches a sequence of at most n tactics within db_list and lems that solves the goal

The goal cannot contain evars

Sourceval wp_auto : bool -> int -> Tactypes.delayed_open_constr list -> string list -> Backtracking.trace Proofview.tactic

Waterproof auto

This function is a rewrite around Auto.auto with the same arguments to be able to retrieve which hints have been used in case of success.

Returns a typed tactic containing the full trace

Sourceval rwp_auto : bool -> int -> Tactypes.delayed_open_constr list -> string list -> Pp.t list -> Pp.t list -> Backtracking.trace Proofview.tactic

Restricted Waterproof auto

This function acts the same as wp_auto but will fail if all proof found contain at least one must-use lemma that is unused or one hint that is in the forbidden list.