-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show "autoapply" for tc eauto; include dbnames in tactic for info where
needed
- Loading branch information
Showing
7 changed files
with
65 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
(* info auto: *) | ||
intro. | ||
intro. | ||
simple apply eq_sym; trivial with zarith (in core). | ||
(* info auto: *) | ||
intro. | ||
intro. | ||
simple apply eq_sym; trivial with zarith (in core). | ||
The command has indeed failed with message: | ||
No applicable tactic. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Require Import ZArith_base Zcomplements. Local Open Scope Z_scope. | ||
|
||
(* Set Typeclasses Debug Verbosity 1. *) | ||
Goal forall A acc, Zlength_aux acc A nil = acc + Z.of_nat (@length A nil). | ||
Proof. | ||
Succeed (solve [info_auto with zarith]). | ||
Succeed (solve [info_eauto with zarith]). | ||
Fail (solve [typeclasses eauto with zarith core]). | ||
(* no applicable tactic *) | ||
Abort. |