Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boitsov14/theorem-prover-kt
A sequent-style theorem prover for first-order logic in Kotlin
https://github.com/boitsov14/theorem-prover-kt
Last synced: 12 days ago
JSON representation
A sequent-style theorem prover for first-order logic in Kotlin
- Host: GitHub
- URL: https://github.com/boitsov14/theorem-prover-kt
- Owner: boitsov14
- License: mit
- Created: 2021-08-29T08:48:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T12:31:22.000Z (12 months ago)
- Last Synced: 2024-08-01T17:37:29.695Z (3 months ago)
- Language: Kotlin
- Homepage: https://boitsov14.github.io/web-prover/
- Size: 8.42 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# theorem-prover-kt
## Description
A sequent-style theorem prover for first-order logic implemented in Kotlin.
## Rust rewrite
I am rewriting this project in Rust. See [theorem-prover-rs](https://github.com/boitsov14/theorem-prover-rs).## [Demo site](https://boitsov14.github.io/web-prover/)
## Misskey bot
[@[email protected]](https://misskey.io/@sequent_bot)
## Twitter bot
[@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)
## Special Thanks
- [Build Your Own First-Order Prover](http://jens-otten.de/tutorial_cade19)
- [stepchowfun/theorem-prover](https://github.com/stepchowfun/theorem-prover)
- [qnighy/ipc_solver](https://github.com/qnighy/ipc_solver)