package coq-core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=13d2793fc6413aac5168822313e4864e
sha512=ec8379df34ba6e72bcf0218c66fef248b0e4c5c436fb3f2d7dd83a2c5f349dd0874a67484fcf9c0df3e5d5937d7ae2b2a79274725595b4b0065a381f70769b42
doc/coq-core.tactics/Auto/index.html
Module Auto
Source
This files implements auto and related automation tactics
Try unification with the precompiled clause, then use registered Apply
ConclPattern concl pat tacast
: if the term concl matches the pattern pat, (in sense of Pattern.somatches
, then replace ?1
?2
metavars in tacast by the right values to build a tactic
val conclPattern :
EConstr.constr ->
Pattern.constr_pattern option ->
Genarg.glob_generic_argument ->
unit Proofview.tactic
The Auto tactic
The use of the "core" database can be de-activated by passing "nocore" amongst the databases.
val auto :
?debug:Hints.debug ->
int ->
Tactypes.delayed_open_constr list ->
Hints.hint_db_name list ->
unit Proofview.tactic
Auto with more delta.
auto with default search depth and with the hint database "core"
val full_auto :
?debug:Hints.debug ->
int ->
Tactypes.delayed_open_constr list ->
unit Proofview.tactic
auto with all hint databases
auto with default search depth and with all hint databases
val gen_auto :
?debug:Hints.debug ->
int option ->
Tactypes.delayed_open_constr list ->
Hints.hint_db_name list option ->
unit Proofview.tactic
The generic form of auto (second arg None
means all bases)
val h_auto :
?debug:Hints.debug ->
int option ->
Tactypes.delayed_open_constr list ->
Hints.hint_db_name list option ->
unit Proofview.tactic
The hidden version of auto
Trivial
val trivial :
?debug:Hints.debug ->
Tactypes.delayed_open_constr list ->
Hints.hint_db_name list ->
unit Proofview.tactic
val gen_trivial :
?debug:Hints.debug ->
Tactypes.delayed_open_constr list ->
Hints.hint_db_name list option ->
unit Proofview.tactic
val full_trivial :
?debug:Hints.debug ->
Tactypes.delayed_open_constr list ->
unit Proofview.tactic
val h_trivial :
?debug:Hints.debug ->
Tactypes.delayed_open_constr list ->
Hints.hint_db_name list option ->
unit Proofview.tactic