-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
An ML interface to invoke the opentheory tool. Closes #2
- Loading branch information
Showing
8 changed files
with
3,508 additions
and
3,467 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,21 @@ | ||
(* ========================================================================= *) | ||
(* ML INTERFACE TO THE OPENTHEORY TOOL FOR PROCESSING THEORY PACKAGES *) | ||
(* Copyright (c) 2018 Joe Leslie-Hurd, distributed under the MIT license *) | ||
(* ========================================================================= *) | ||
|
||
signature Tool = | ||
sig | ||
|
||
(* ------------------------------------------------------------------------- *) | ||
(* Tool name. *) | ||
(* ------------------------------------------------------------------------- *) | ||
|
||
val name : string | ||
|
||
(* ------------------------------------------------------------------------- *) | ||
(* Invoke the tool on given command-line arguments. *) | ||
(* ------------------------------------------------------------------------- *) | ||
|
||
val main : string list -> unit | ||
|
||
end |
Oops, something went wrong.