Skip to content

Commit 7218ce9

Browse files
author
Enrico
authored
Merge pull request #18 : Elpi 1.0
elpi 1.0
2 parents 22b158f + 91019db commit 7218ce9

File tree

95 files changed

+4494
-3422
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+4494
-3422
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.elpi linguist-language=prolog

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
*.cmti
99
*.cma
1010

11+
findlib
12+
1113
*~
1214
.*.swp
1315

@@ -16,8 +18,8 @@
1618
.depends.byte
1719
.depends.parser.byte
1820

19-
elpi
20-
elpi.byte
21+
./elpi
22+
./elpi.*
2123
trace_ppx
2224
.merlin
2325
elpi_config.ml

.merlin.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ S src/
22
B src/
33
PKG ppx_deriving.std ppx_deriving.runtime
44
PKG camlp5
5+
PKG re

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
global:
66
- OCAML_MIN=4.02.3
77
- OCAML_MAX=4.06.0
8-
- DEPS="camlp5 ocamlfind ppx_tools_versioned ppx_deriving ocaml-migrate-parsetree"
8+
- DEPS="camlp5 ocamlfind ppx_tools_versioned ppx_deriving ocaml-migrate-parsetree re"
99
- JOBS=2
1010

1111
install:
@@ -68,7 +68,7 @@ matrix:
6868
os: osx
6969
before_install:
7070
- brew update
71-
- brew install opam
71+
- brew install --ignore-dependencies opam
7272
- brew install gnu-time
7373
- brew install lua51
7474
cache:
@@ -84,7 +84,7 @@ matrix:
8484
os: osx
8585
before_install:
8686
- brew update
87-
- brew install opam
87+
- brew install --ignore-dependencies opam
8888
- brew install gnu-time
8989
- brew install lua51
9090
cache:
@@ -117,5 +117,3 @@ matrix:
117117
- if ocamlfind query elpi; then false; else true; fi
118118
- if which elpi; then false; else true; fi
119119

120-
allow_failures:
121-
- env: TEST="osx build $OCAML_MIN"

Changelog.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
1-
2-
## Version 1 (Jan 2018?)
1+
## Version 1.0 (April 2018)
32
Second public release, developed in tandem with coq-elpi and matita-elpi.
43

5-
The programming language features constraints (suspended goals) and
4+
The programming language features syntactic constraints (suspended goals) and
65
a meta language (inspired by CHR) to manipulate the constrain store.
76

87
There is an API for clients letting one drive the interpreter and
98
extend the set of built-in predicates, register quotations and
10-
antiquotations, etc.
9+
anti-quotations, etc.
1110

1211
The software is now built using findlib into a library.
1312
The standalone interpreter is just a regular client of the API.
1413

15-
All language features are documented in the [ELPI.md](ELPI.md) file.
16-
The client API is documented in [elpi_API.mli](src/elpi_API.mli).
17-
1814
## LPAR 2015 (Jul 12, 2015)
19-
First public release accompaining the paper
15+
First public release accompanying the paper
2016
[ELPI: fast, Embeddable, λProlog Interpreter](https://hal.inria.fr/hal-01176856/)

0 commit comments

Comments
 (0)