Skip to content

Commit

Permalink
add how to use
Browse files Browse the repository at this point in the history
  • Loading branch information
boitsov14 committed Nov 20, 2023
1 parent 9459baf commit a335c13
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

## Description

A sequent-style automated theorem prover for first-order predicate logic implemented in kotlin. For any provable formula, it will find the proof. This project is still in progress.
A sequent-style theorem prover for first-order logic implemented in Kotlin.

## Demo site
## Rust rewrite
I am rewriting this project in Rust. See [theorem-prover-rs](https://github.com/boitsov14/theorem-prover-rs).

[here](https://boitsov14.github.io/web-prover/)
## [Demo site](https://boitsov14.github.io/web-prover/)

## Misskey bot

Expand All @@ -16,6 +17,18 @@ A sequent-style automated theorem prover for first-order predicate logic impleme

[@sequent_bot](https://twitter.com/sequent_bot)

## How to use

```
git clone https://github.com/boitsov14/theorem-prover-kt.git
cd theorem-prover-kt
chmod +x gradlew
./gradlew shadowJar
java -jar build/libs/theorem-prover-kt-all.jar "∃x∀yP(x,y) → ∀y∃xP(x,y)"
latex out.tex
dvipng out.dvi
```

## APIs

[api-for-theorem-prover](https://github.com/boitsov14/api-for-theorem-prover)
Expand Down

0 comments on commit a335c13

Please sign in to comment.