package elpi

  1. Overview
  2. No Docs
ELPI - Embeddable λProlog Interpreter

Install

dune-project
 Dependency

Authors

Maintainers

Sources

elpi-3.4.5.tbz
sha256=71c93a5ea0bdf19f656f70984bc2bf681d5639c9230325f3675e2f5f8d6726f2
sha512=d6a87bf1ba6bfb6f773075295137d037e007252ecf16aa026c151df11bc498efe56d5d5369920c2dad3b53373cba75378731cd752d08e07353a1c68063d2cd2a

Description

ELPI implements a variant of λProlog enriched with Constraint Handling Rules, a programming language well suited to manipulate syntax trees with binders.

ELPI is designed to be embedded into larger applications written in OCaml as an extension language. It comes with an API to drive the interpreter and with an FFI for defining built-in predicates and data types, as well as quotations and similar goodies that are handy to adapt the language to the host application.

This package provides both a command line interpreter (elpi) and a library to be linked in other applications (eg by passing -package elpi to ocamlfind).

The ELPI programming language has the following features:

  • Native support for variable binding and substitution, via an Higher Order Abstract Syntax (HOAS) embedding of the object language. The programmer does not need to care about technical devices to handle bound variables, like De Bruijn indices.

  • Native support for hypothetical context. When moving under a binder one can attach to the bound variable extra information that is collected when the variable gets out of scope. For example when writing a type-checker the programmer needs not to care about managing the typing context.

  • Native support for higher order unification variables, again via HOAS. Unification variables of the meta-language (λProlog) can be reused to represent the unification variables of the object language. The programmer does not need to care about the unification-variable assignment map and cannot assign to a unification variable a term containing variables out of scope, or build a circular assignment.

  • Native support for syntactic constraints and their meta-level handling rules. The generative semantics of Prolog can be disabled by turning a goal into a syntactic constraint (suspended goal). A syntactic constraint is resumed as soon as relevant variables gets assigned. Syntactic constraints can be manipulated by constraint handling rules (CHR).

  • Native support for backtracking. To ease implementation of search.

  • The constraint store is extensible. The host application can declare non-syntactic constraints and use custom constraint solvers to check their consistency.

  • Clauses are graftable. The user is free to extend an existing program by inserting/removing clauses, both at runtime (using implication) and at "compilation" time by accumulating files.

ELPI is free software released under the terms of LGPL 2.1 or above.

Published: 12 Dec 2025

Dependencies (10)

  1. atdts >= "2.10.0"
  2. atdgen >= "2.10.0"
  3. dune >= "2.9.0"
  4. ppx_deriving >= "4.3"
  5. re >= "1.7.2"
  6. menhir >= "20211230"
  7. ppx_optcomp
  8. ppxlib >= "0.12.0"
  9. stdlib-shims
  10. ocaml >= "4.13.0"

Dev Dependencies (6)

  1. odoc with-doc
  2. conf-time with-test
  3. yojson with-test
  4. fileutils with-test
  5. cmdliner with-test & < "2.0"
  6. ANSITerminal with-test

Conflicts

None