Skip to content

Commit ef5b35a

Browse files
committed
[new release] lambdapi (3.0.0)
CHANGES: ### Added - Tactic `simplify rule off` to simplify the focused goal wrt β-reduction only. - Tacticals `orelse` and `repeat`. - Tactic `eval` which evaluates a term and interprets it as a tactic. This allows one to define tactics using rewriting. - Builtin `"String"` for string literals between double quotes. - Options `--header` and `--url` for the `websearch` command. - In search queries, replace the substring `"forall"` and `"->"` by `"Π"` and `"→"` respectively. - Websearch queries and responses are now recorded in the log. - Commands `debug` and `flag` with no argument to get the list of debug flags and the list of flags respectively. - Tactic `change`. - Modifier `private` for `open` command to not be exported. ### Changed - Replaced Bindlib by de Bruijn (Frédéric) and closures (Bruno). The performances are slightly better than with Bindlib, especially on rewriting intensive files (the new version is 3.7 times faster on `tests/OK/perf_rw_engine.lp`). Lambdapi is now 2 times faster than dkcheck on matita, and only 2 times slower than dkcheck on holide. - Several improvements to use the search engine: * normalize queries in websearch/search * pre-load a file in websearch (e.g. to declare implicit args) * paginate the output in the generated webpage * allow to declare rewriting rules (e.g. alignments) over defined and constant symbols * improve error message for overloaded symbols - Tactic set x ≔ t: replace all subterms equal to t by x. - Enhance the formatting of the search results. - `require` and `open` are now recursive. ### Fixed - Notations on external symbols are now exported. - Make the websearch server listen on all the interfaces instead of localhost only.
1 parent 5626e0c commit ef5b35a

File tree

1 file changed

+63
-0
lines changed
  • packages/lambdapi/lambdapi.3.0.0

1 file changed

+63
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
opam-version: "2.0"
2+
synopsis: "Proof assistant for the λΠ-calculus modulo rewriting"
3+
description: """
4+
Lambdapi is an interactive proof assistant for the λΠ-calculus modulo
5+
rewriting. It can call external automated theorem provers via Why3.
6+
The user manual is on https://lambdapi.readthedocs.io/.
7+
A standard library and other developments are available on
8+
https://github.com/Deducteam/opam-lambdapi-repository/. An extension
9+
for Emacs is available on MELPA. An extension for VSCode is available
10+
on the VSCode Marketplace. Lambdapi can read Dedukti files. It
11+
includes checkers for local confluence and subject reduction. It also
12+
provides commands to export Lambdapi files to other formats or
13+
systems: Dedukti, Coq, HRS, CPF.
14+
"""
15+
maintainer: ["dedukti-dev@inria.fr"]
16+
authors: ["Deducteam"]
17+
license: "CECILL-2.1"
18+
homepage: "https://github.com/Deducteam/lambdapi"
19+
bug-reports: "https://github.com/Deducteam/lambdapi/issues"
20+
dev-repo: "git+https://github.com/Deducteam/lambdapi.git"
21+
depends: [
22+
"dune" {>= "3.7"}
23+
(("ocaml" {>= "5.3"} & "dream-pure" {= "1.0.0~alpha2"} & "dream-httpaf" {= "1.0.0~alpha4"} & "dream" {= "1.0.0~alpha8"})
24+
|("ocaml" {>= "4.13" & < "5.3"} & "dream" {>= "1.0.0~alpha3"})
25+
|("ocaml" {>= "4.10" & < "4.13"} & "dream-pure" {= "1.0.0~alpha2"} & "dream-httpaf" {= "1.0.0~alpha3"} & "dream" {= "1.0.0~alpha6"}))
26+
"menhir" {>= "20200624"}
27+
"sedlex" {>= "3.2"}
28+
"alcotest" {with-test}
29+
"alt-ergo" {with-test}
30+
"dedukti" {with-test & >= "2.7"}
31+
"timed" {>= "1"}
32+
"pratter" {>= "5" & < "6"}
33+
"camlp-streams" {>= "5"}
34+
"why3" {>= "1.8"}
35+
"yojson" {>= "1.6"}
36+
"cmdliner" {>= "1.1"}
37+
"stdlib-shims" {>= "0.1"}
38+
"odoc" {with-doc}
39+
"lwt_ppx" {>= "1"}
40+
"uri" {>= "1.1"}
41+
]
42+
build: [
43+
["dune" "subst"] {dev}
44+
[
45+
"dune"
46+
"build"
47+
"-p"
48+
name
49+
"-j"
50+
jobs
51+
"@install"
52+
]
53+
]
54+
conflicts: [ "ocaml-option-bytecode-only" ]
55+
url {
56+
src:
57+
"https://github.com/Deducteam/lambdapi/releases/download/3.0.0/lambdapi-3.0.0.tbz"
58+
checksum: [
59+
"sha256=1066aed2618fd8e6a400c5147dbf55ea977ce8d3fe2e518ac6785c6775a1b8be"
60+
"sha512=f7f499626aba92e070ae69581299a58525973fdbfd04a160ed3ac89209fb6cbe307b816d0b23e1b75bc83467ce8b4b0530c6f9816eaf58f7a07fde65a450106c"
61+
]
62+
}
63+
x-commit-hash: "f73c64dbeebf850ecc3384d64f0dbf93a1ea6acd"

0 commit comments

Comments
 (0)