package coq-waterproof

  1. Overview
  2. Docs
val exists_evaluable_reference : Environ.env -> Tacred.evaluable_global_reference -> bool

Same function as Auto.exists_evaluable_reference

val pr_info_nop : unit -> unit

Prints "idtac" if the log field is true

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

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

val 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

val 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.