Home |
Github |
auto
does a recursive search through a specified
knowledge base in order to solve goals. If auto
cannot
completely solve a goal, it succeeds with no changes to the goal.
The knowledge bases that auto
uses are called Hint
Databases. Hint databases are provided by the standard
library, and can also be created and added to by users. Hint databases
can contain a variety of hint types, including but not limited to:
Constructors
: auto
will now try to apply
each of the constructors for a given Inductive
typeUnfold
: auto
will now try to unfold a
given definition - helpful when trivial simplification isn’t enoughResolve
: auto
will now try to
simple apply
a given lemmaThe default hint database used by auto
when no other
database is specified is core
.
(* Simple usage *)
auto.
(* Using a specific database *)
auto with bool.
(* Using a specific lemma *)
auto using example.
Before
P: Prop
H: P
=========================
1/1
0 = 0 /\ True /\ P
auto.
After
No more goals.
Script
Create HintDb automation.
Lemma mul_1_r : forall n, n * 1 = n.
Proof. induction n. auto. simpl. now rewrite IHn. Qed.
Hint Resolve mul_1_r : automation.
Lemma x : (forall n, n * 1 = n) /\ (true = true).
Proof. auto with automation. Qed.
“More Automation” - Logical Foundations
“A Streamlined Treatment of Automation” - Logical Foundations
“Theory and Practice of Automation in Coq Proofs” - Programming Language Foundations