Standard library of Lambdapi
November 17, 2025 ยท View on GitHub
Prop: propositional logicEq: equalitySet: set codes for polymorphismFOL: typed first-order logicBool: booleansNat: natural numbersList: polymorphic listsClassic: classical logic
The libraries on natural numbers and polymorphic lists follow the corresponding Coq SSReflect libraries:
Installation with Opam
opam repository -a --set-default add lambdapi https://github.com/deducteam/opam-lambdapi-repos
itory.git # once
opam install lambdapi-stdlib
Usage in Lambdapi
require open Stdlib.Prop Stdlib.Set Stdlib.FOL Stdlib.Nat /* ... */;
Compilation from the sources
opam install --deps-only . # once
make
Installation from the sources
opam install .