https://github.com/eprover/eprover
https://github.com/eprover/eprover
atp prover reasoning
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eprover/eprover
- Owner: eprover
- License: other
- Created: 2016-11-09T21:21:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T18:11:44.000Z (7 months ago)
- Last Synced: 2025-03-28T17:11:10.331Z (6 months ago)
- Topics: atp, prover, reasoning
- Language: C
- Homepage: http://www.eprover.org
- Size: 146 MB
- Stars: 137
- Watchers: 8
- Forks: 25
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
**NOTE**: The CASC ReadMe file with information for the CADE ATP
System Competition is in `DOC/Readme`.
**NOTE**: The ultimate source is now README.md. Don't edit the plain
README!Short Installation Instructions for the Impatient
=================================================This assumes that you have GNU tar, sh and gawk in your search path!
Simple installation of the first-order version (will install
executables):```sh
tar -xzf E.tgz
cd E
./configure --bindir=/path/to/EXECDIR
make
make install
/path/to/EXECDIR/eprover -h | more
```Simplest installation (in-place):
```sh
tar -xzf E.tgz
cd E
./configure
make rebuild
cd PROVER
./eprover -h | more
```Read the rest of this file and the fine (if incomplete) manual if
anything fails. There should be a copy of the manual in
`DOC/eprover.pdf`.E 3.2 supports (monomorphic) higher-order logic. To build a binary
that supports higher-order reasoning, use the following:```sh
./configure --enable-ho
make rebuild
cd PROVER
eprover-ho -h | more
```The recommended command for running E on the file problem.p is
```
eprover --auto --proof-object problem.p
```If you want to try the usually stronger strategy scheduling mode
(particularly recommended for higher-order problems, use```
eprover --auto-schedule --proof-object problem.p
```To use more than one CPU, use something like
```
eprover --auto-schedule=8 --proof-object problem.p
```Replace `eprover` by `eprover-ho` for the higher-order-enabled
version.
You can add a time limit of 300 seconds with the option
`--cpu-limit=300` and a memory limit of 2 GB with `--memory-limit=2048`
for all "automatic" modes. You can reduce output with `-s` (or
`--silent`). As of version 1.9.1, E will try to auto-detect the input
format and adjust the output format accordingly. You can still force
input and output formats via commandline options.The Equational Theorem Prover E
===============================This is the README file for version 3.2 "Puttabong Moondrop" of the E
equational theorem prover. This version of E is free software, see the
file COPYING for details about the license and the fact that THERE IS
NO WARRANTY!What is E?
----------E is an equational theorem prover. That means it is a program that you
can stuff a mathematical specification (in many-sorted first-order
logic with equality or in polymorphic higher-order logic) and a
hypothesisconjecture into, and which will then run forever, using up
all of your machines resources. Very occasionally it will find a proof
for the conjecture and tell you so ;-).E has been created and is currently maintained by Stephan Schulz,
, now with the help of several contributors (see
`DOC/CONTRIBUTORS`). It is developed and distributed under the GNU
General Public License.The E homepage can be found at
Installation
------------E can be installed anywhere in the file system, either by a normal
user or by the system administrator. By default, the prover will still
be compiled as a version that supports first-order logic only.To install the package, unpack the distribution (if you are reading
this, you probably already did):```sh
gunzip -c E.tgz|tar -xvf -
```or
```sh
(g)tar -xzf E.tgz
```
(if you have GNU tar)This should create a directory named E. After unpacking, optionally
edit `E/Makefile.vars` to your liking. In particular, if building for
HPUX, comment out the suitable CFLAGS definition (for most systems,
the default definition should be ok). Then change to the E directory:```sh
cd E
```Determine if you want to run E from its own build directory or wether
you want to install the executables in some other directory
EXECDIR. In the first case, run```sh
./configure
```otherwise
```sh
./configure --bindir=EXECDIR
```or, if you also want to install the man-pages into MANDIR,
```sh
./configure --bindir=EXECDIR --man-prefix=MANDIR
```To enable higher-order-support, add the option `--enable-ho`, e.g.
```sh
./configure --enable-ho
```Then type
```sh
make
```to compile the libraries and all included programs under the E
directory. If you want to install E in a particular EXECDIR, type```sh
make install
```You must have write permission in the EXECDIR, so if you install E
outside your own home directory, you may need to become root or use
sudo.If you have changed the configuration, you need to rebuild all object
and binary files. Run```sh
make rebuild
```instead of plain make.
Type
```sh
make documentation
```to translate the LaTeX documentation (this requires LaTeX2e, pdflatex,
and the packages theorem, amssymb and epsfig, which are included in
most current LaTeX distributions). The manual should also be included
as a pre-compiled PDF.For some operating systems, especially if you do not have the GNU gcc
compiler installed, you may need to edit Makefile.vars manually to
select tools and options. If you have any problems, look into
E/DOC/PORTING.If you get into trouble,
```sh
make rebuild
```will rebuild E completely to your current configuration.
After installation, go to E/PROVER and type
```sh
./eprover BOO001-1+rm_eq_rstfp.lop
```to see the prover in action. Type
```sh
./eprover LUSK6.lop
```for a harder example. `./eprover -h` will give you some information and
a list of options.For impatient people who do not want to read anything:
```sh
eprover --auto --memory-limit=<80%_of_your_main_memory>
```should give a reasonable performance on a large class of problems
(unless your main memory is really small).The auto mode will perform a heuristic pruning of the axiom set which
may result in incompleteness for very large problems (many thousands
of axioms). If you need completeness, use```sh
eprover --satauto --memory-limit=<80%_of_your_main_memory>
```In general, different proof problems are easy for different
strategies. If you run```sh
eprover --auto-schedule --memory-limit=<80%_of_your_main_memory>
```or
```sh
eprover --satauto-schedule --memory-limit=<80%_of_your_main_memory>
```the prover will try a series of strategies on the problem. It assumes
a 300 second run time - if you impose a different one externally, it
is important to let E know via the `--cpu-limit=XXX` option so that it
can adjust the schedule. You can also enable usage of multiple cores
with the variant `--auto-schedule=n` (where `n` is the number of
cores), or `--auto-schedule=Auto` to use all available cores.One of the features of E is the ability to produce semi-readable
proofs. To use this, type```sh
eprover --proof-object
```By default, E will now automatically detect the input format (LOP,
TPTP-2 or TPTP-3), and will select the matching output format (PCL2
for LOP and TPTP-2 inputs, TPTP-3 for TPTP-3 inputs).You can check the proof objects in PCL format for correctness using
the tool checkproof in the same directory. "checkproof -h" should give
you all necessary information. Note that checkproof cannot yet deal
with the full first order part, and will skip anything not
clausal. Also, support for independent provers in checkproof can be
subject to bit-rot, as other systems and interfaces change.Bug reports and questions
=========================We welcome bug reports and even reasonable questions. If the prover
behaves in an unexpected way, please include the following
information:- What did you observe?
- What did you expect?
- The output of `eprover --version`
- The full commandline that lead to the unexpected behaviour
- The input file(s) that lead to the unexpected behaviourMost bug reports should be send to . Bug reports
with respect to the HO-version should also be send to
. Please remember that this is an unpaid
volunteer service ;-).