-
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.
Split the firstorder plugin into a core package and an Ltac1 syntax.
- Loading branch information
Showing
7 changed files
with
19 additions
and
9 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,7 +1,16 @@ | ||
(library | ||
(name firstorder_core_plugin) | ||
(public_name coq-core.plugins.firstorder_core) | ||
(synopsis "Coq's first order logic solver plugin") | ||
(modules (:standard \ g_ground)) | ||
(libraries coq-core.tactics)) | ||
|
||
(library | ||
(name firstorder_plugin) | ||
(public_name coq-core.plugins.firstorder) | ||
(synopsis "Coq's first order logic solver plugin") | ||
(libraries coq-core.plugins.ltac)) | ||
(synopsis "Coq's first order logic solver plugin (Ltac1 syntax)") | ||
(flags :standard -open Firstorder_core_plugin) | ||
(modules g_ground) | ||
(libraries coq-core.plugins.firstorder_core coq-core.plugins.ltac)) | ||
|
||
(coq.pp (modules g_ground)) |
Empty file.
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