-
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
10 changed files
with
82 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- **Fixed:** | ||
Debug output for :tacn:`typeclasses eauto` now shows :tacn:`autoapply` instead of :n:`simple *apply`. | ||
The :tacn:`trivial` shown in :n:`*auto` debug output for :cmd:`Hint Immediate` hints | ||
now includes the hint databases passed to :n:`*auto` | ||
(`#19823 <https://github.com/coq/coq/pull/19823>`_, | ||
fixes `#19799 <https://github.com/coq/coq/issues/19799>`_, | ||
by Jim Fehrle). |
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
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,11 @@ | ||
(* info auto: *) | ||
intro. | ||
intro. | ||
simple apply eq_sym; trivial with zarith (in core). | ||
(* info eauto: *) | ||
intro. | ||
intro. | ||
simple apply eq_sym; trivial with zarith. | ||
File "./output/bug19799.v", line 8, characters 2-52: | ||
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. |