package lambdapi
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=2c251021b6fac40c05282ca183902da5b1008e69d9179d7a9543905c2c21a28a
sha512=69535f92766e6fedc2675fc214f0fb699bde2a06aa91d338c93c99756235a293cf16776f6328973dda07cf2ad402e58fe3104a08f1a896990c1778b42f7f9fcf
Description
Lambdapi is an interactive proof assistant for the λΠ-calculus modulo rewriting. It can call external automated theorem provers via Why3. The user manual is on https://lambdapi.readthedocs.io/. A standard library and other developments are available on https://github.com/Deducteam/opam-lambdapi-repository/. An extension for Emacs is available on MELPA. An extension for VSCode is available on the VSCode Marketplace. Lambdapi can read Dedukti files. It includes checkers for local confluence and subject reduction. It also provides commands to export Lambdapi files to other formats or systems: Dedukti, Coq, HRS, CPF.
Published: 29 Jul 2024
README
Lambdapi, a proof assistant based on the λΠ-calculus modulo rewriting
>>>>>
User Manual <<<<<
Issues can be reported on the issue tracker.
Questions can be asked on the forum.
User interfaces
Libraries
Lambdapi libraries can be found on the Opam repository of Lambdapi libraries.
Examples
tutorial (learn Lambdapi in 15 minutes)
Some users
Stephan Merz and Alessio Coltellacci: certification of TLAPS proofs
Claude Stolze: certification of Atelier B proofs
Jean-Paul Bodeveix: certification of Rodin proofs for Event-B
Simon Guilloud: certification of LISA proofs
Thomas Traversié: An Implementation of Set Theory with Pointed Graphs
Quentin Garchery: certification of Why3 proof task transformations
Operating systems
Lambdapi requires a Unix-like system. It should work on Linux as well as on MacOS. It might be possible to make it work on Windows too with Cygwin or "bash on Windows".
Installation via Opam
opam install lambdapi
gives you the command lambdapi
.
The Emacs extension is available on MELPA.
The VSCode extension is available on the Marketplace.
To browse the source code documentation, you can do:
opam install odig
odig doc lambdapi
To install Lambdapi libraries, see the opam-lambdapi-repository.
Remark: To install Opam, see here.
To make sure that programs installed via opam are in your path, you should have in your .bashrc
(or any other shell initial file) the following line that can be automatically added when you do opam init
:
test -r ~/.opam/opam-init/init.sh && . ~/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
To update your path, you can also do:
eval `opam env`
Compilation from the sources
You can get the sources using git
as follows:
git clone https://github.com/Deducteam/lambdapi.git
Dependencies are described in lambdapi.opam
. The command why3 config detect
must be run for Why3 to know the available provers for the why3
tactic.
Using Opam, a suitable OCaml environment can be setup as follows:
cd lambdapi
opam install .
why3 config detect
To compile Lambdapi, just run the command make
in the source directory. This produces the _build/install/default/bin/lambdapi
binary. Use the --help
option for more information. Other make targets are:
make # Build lambdapi
make doc # Build the user documentation (avalaible on readthedocs)
make bnf # Build the BNF grammar
make odoc # Build the developer documentation
make install # Install lambdapi
make install_emacs_mode # Install emacs mode
make install_vim_mode # Install vim mode
You can run lambdapi
without installing it with dune exec -- lambdapi
.
For running tests, one also needs alcotest and alt-ergo.
For building the source code documentation, one needs odoc. The starting file of the source code html documentation is _build/default/_doc/_html/lambdapi/index.html
.
For building the User Manual, see doc/README.md
.
The following commands can be used to clean up the repository:
make clean # Removes files generated by OCaml.
make distclean # Same as clean, but also removes library checking files.
make fullclean # Same as distclean, but also removes downloaded libraries.
Dependencies (14)
Used by
None