LPCIC / elpi

Embeddable Lambda Prolog Interpreter
GNU Lesser General Public License v2.1
273 stars 32 forks source link
constraints extension-language lambda-prolog ocaml-library

Actions Status

ELPI - Embeddable λProlog Interpreter

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 come in handy to adapt the language to the host application.

ELPI is free software released under LGPL version 2.1 or above.

How to install ELPI

ELPI runs on Linux, MacOS and Windows.

The simplest way is to use OPAM and type

opam install elpi

This command gives you the command line tool elpi as well as the findlib -package elpi switch.

To install the development version of elpi directly from github you can type

opam pin add elpi https://github.com/LPCIC/elpi.git

You can also clone this repository and type make build. If you want to build the legacy parser, do begin with make config LEGACY_PARSER=1 and then make build.

Finally, each CI run builds statically linked binaries for the three supported operating systems, click on any job from the Actions tab to download them.

Syntax highlight in Visual studio code

The extension for vscode is available in the market place, just look for Elpi.

Syntax highlight in vim

We recommend to add the following lines to ~/.vimrc

(click to expand)

```vim "elpi autocmd BufRead,BufNewFile *.elpi set filetype=lprolog autocmd FileType lprolog syn match lprologIdentifier "\<\l[-a-zA-Z\.+*/\\^<>=`'~?@#$&!_]*\>" autocmd FileType lprolog syn region lprologClause start="^\<\l[-a-zA-Z\.+*/\\^<>=`'~?@#$&!_]*\>" end=" \|:-\|\." autocmd FileType lprolog syn match lprologClauseSymbols ":-" autocmd FileType lprolog syn match lprologClauseSymbols "\." autocmd FileType lprolog hi def link lprologClauseSymbols Type autocmd FileType lprolog syn keyword elpiKeyword mode macro type pred namespace rule constraint uvar shorten autocmd FileType lprolog syn match elpiKeyword ":before" autocmd FileType lprolog syn match elpiKeyword ":after" autocmd FileType lprolog syn match elpiKeyword ":name" autocmd FileType lprolog syn match elpiMacro "@\(\w\|-\)\+" autocmd FileType lprolog syn match elpiSpill "{" autocmd FileType lprolog syn match elpiSpill "}" autocmd FileType lprolog syn region elpiQuotation start="{{" end="}}" contains=@elpiAntiQuotation autocmd FileType lprolog hi def link elpiKeyword Keyword autocmd FileType lprolog hi def link elpiMacro Special autocmd FileType lprolog hi def link elpiSpill Special ```

Documentation

The language is quite compatible with standard λProlog and ELPI is known to be able to run most of the λProlog programs out there (see the list of known incompatibilities with the Teyjus system). Reading Programming with Higher-Order Logic by Miller and Nadathur is highly recommended and covers standard λProlog.

The extensions to λProlog implemented in ELPI are described in the ELPI file, built-in predicates are documented in builtin.

There is a short paper describing the implementation of the interpreter, in particular how it deals with binder mobility.

A longer paper describes, among other things, the part of the language for declaring and manipulating constraints.

For a lightweight introduction to Elpi one can look at the slides of the talk given at the ML Family workshop 2018 titled "Elpi: an extension language with binders and unification variables". The companion code of toyml that implements W (ML type inference) in Elpi is also available.

How to embed ELPI in your software

The easiest way of embedding ELPI is by linking it using findlib as in ocamlfind opt -package elpi -linkpkg mycode.ml -o myprogram. The API the host application can use to drive ELPI is documented in the API.mli file (html rendering). The Builtin.ml file contains example of (basic) built-in predicates declaration via ELPI's FFI.

The command line interface to ELPI is a very simple example of a client using ELPI as a library. The most complex example of embedding of ELPI is coq-elpi.

Why ELPI?

ELPI is a research project aimed at providing a programming platform for the so called elaborator component of an interactive theorem prover.

What's an elaborator and what's so special about it?

The elaborator of an interactive prover is the component in charge of turning a term as input by the user into a well typed one. In a prover like Coq it performs type inference and is typically extended by the user.

The elaborator manipulates terms with binders and holes (unification variables) representing missing piece of information. Some of them have to be filled in order to make the term well typed. Some others are filled in because the user has programmed the elaborator to do so, e.g. ad-hoc polymorphism.

Such software component is characterized by an high complexity coming from the interplay of binders, reduction and unification, the heuristics to make it work in practice and the user extensions to customize its behavior.

What problem does ELPI solve and how?

The programming language has the following features

Most of these feature come with λProlog. Constraints and propagation rules are novel in ELPI.