Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siddhartha-gadgil/trepplein4
lean 4 typechecker in scala (based on Gabriel Ebner's trepplein)
https://github.com/siddhartha-gadgil/trepplein4
Last synced: about 1 month ago
JSON representation
lean 4 typechecker in scala (based on Gabriel Ebner's trepplein)
- Host: GitHub
- URL: https://github.com/siddhartha-gadgil/trepplein4
- Owner: siddhartha-gadgil
- License: apache-2.0
- Created: 2023-09-29T14:58:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-02T10:04:23.000Z (about 1 year ago)
- Last Synced: 2024-08-10T14:19:43.203Z (5 months ago)
- Language: Scala
- Homepage: https://siddhartha-gadgil.github.io/trepplein4/
- Size: 1.79 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
## trepplein: a Lean type-checker
Lean is an interactive theorem prover based on dependent type theory. For
additional trust, Lean can [export the generated proofs][1] so that they can be
independently verified. Trepplein is a tool that can check these exported proofs.[1]: https://github.com/leanprover/lean/blob/master/doc/export_format.md
Trepplein is written in Scala, and requires [SBT](http://www.scala-sbt.org/) to
build.
```
sbt stage
./target/universal/stage/bin/trepplein .../export.out
```### Other checkers
* [tc](https://github.com/dselsam/tc), a type-checker written in Haskell.
* [leanchecker](https://github.com/leanprover/lean/tree/master/src/checker), a bare-bones version of the Lean kernel.