Crates.io | meancop |
lib.rs | meancop |
version | 0.2.0 |
source | src |
created_at | 2021-03-12 19:48:03.301824 |
updated_at | 2023-09-26 11:11:56.997811 |
description | More efficient, albeit non-lean connection prover |
homepage | |
repository | https://github.com/01mf02/cop-rs |
max_upload_size | |
id | 367851 |
size | 31,344 |
This project aims to reimplement in Rust several automated theorem provers of the leanCoP family, such as leanCoP and nanoCoP.
The goals of the project are:
The reference prover meanCoP can do clausal and nonclausal proof search. Its clausal proof search performs the same proof steps as leanCoP, while its nonclausal proof search performs proof search similarly to nanoCoP, except for a technique that enables smaller extension clauses when connecting from a clause to a copy of itself.
To run the prover, it is necessary to install a recent Rust toolchain. This can be done conveniently using rustup.
Once Rust is installed, you can run meanCoP such as:
cargo run --release problems/ijcar16ex.p
To install meanCoP:
cargo install --path meancop
The project contains an extensive evaluation suite in the eval
directory.