-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
This is twee, a prover for equational problems. | ||
This is twee, an equational theorem prover. | ||
|
||
To install, run cabal install. | ||
The version in this git repository is likely to be unstable! | ||
To install the latest stable version, run: | ||
|
||
Afterwards, invoke as twee nameofproblem.p. The problem should be in | ||
TPTP format (http://www.tptp.org). You can find a few examples in the | ||
tests directory. All axioms and conjectures must be equations, but you | ||
can freely use types and quantifiers. | ||
cabal install twee | ||
|
||
Twee is experimental software, use at your own risk! | ||
If you have LLVM installed, you can get a slightly faster version by | ||
running: | ||
|
||
cabal install twee -fllvm | ||
|
||
If you really want the latest unstable version, run `cabal install` in | ||
this repository. You will most likely need the latest git version of | ||
Jukebox, from https://github.com/nick8325/jukebox, too - and things | ||
may break from time to time. | ||
|
||
Afterwards, run `twee nameofproblem.p`. The problem should be in TPTP | ||
format (http://www.tptp.org). You can find a few examples in the | ||
`tests` directory. All axioms and conjectures must be equations, but | ||
you can freely use quantifiers. If it succeeds in proving your | ||
problem, twee will print a human-readable proof. |