Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c-cube/trustee
[wip] A LCF-style kernel of trust intended for certified ATP and proof checking for FOL/HOL.
https://github.com/c-cube/trustee
hol kernel-of-trust lcf ocaml proof-checker
Last synced: 3 months ago
JSON representation
[wip] A LCF-style kernel of trust intended for certified ATP and proof checking for FOL/HOL.
- Host: GitHub
- URL: https://github.com/c-cube/trustee
- Owner: c-cube
- Created: 2020-01-17T03:23:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T03:18:11.000Z (11 months ago)
- Last Synced: 2024-04-29T23:49:56.562Z (8 months ago)
- Topics: hol, kernel-of-trust, lcf, ocaml, proof-checker
- Language: OCaml
- Homepage: https://trustee.cedeela.fr/
- Size: 3.45 MB
- Stars: 11
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trustee [![build](https://github.com/c-cube/trustee/actions/workflows/main.yml/badge.svg)](https://github.com/c-cube/trustee/actions/workflows/main.yml)
A LCF-style kernel of trust intended for certified ATP and proof checking for FOL/HOL.
Brief list of features, current or being developed:
- core API with representation of terms and theorems, in `src/core/kernel.ml`.
Terms use De Bruijn indices for bound variables, are hashconsed, and polymorphism
is semi-explicit (i.e. polymorphic constants are applied to types explicitly,
but type quantifiers are still implicit).
- an OpenTheory library with a parser and a verifier based on trustee,
in `src/opentheory/`