-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a bit hackish and slower (goals are reified multiple times) but enables using lra for MathComp without waiting for 8.16 to be the minimum required version for MathComp.
- Loading branch information
Showing
7 changed files
with
313 additions
and
138 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
theories/ring.vo : theories/common.elpi theories/ring.elpi theories/field.elpi | ||
theories/lra.vo : theories/lra.elpi | ||
theories/lra.vo : theories/lra.elpi theories/compat815.elpi |
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,7 @@ | ||
solve (goal _Ctx _Trigger _Type _Proof | ||
[str Tac815, str Tac816, N, F, FQ, E, F'] as G) GL :- | ||
coq.version _Str _Major Minor _Patch, | ||
(if (Minor i< 16) | ||
(coq.ltac.call Tac815 [N, FQ, E, F'] G GL) | ||
(coq.ltac.call Tac816 [N, F, F'] G GL); | ||
coq.ltac.fail 0). |
Large diffs are not rendered by default.
Oops, something went wrong.
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