Skip to content

Commit 02a21b7

Browse files
committed
[new release] hol2dk (2.1.0)
CHANGES: ### Added - command nbp to print the number of (useful) proofs - command files to print theorem statements following the file structuration in HOL-Light - command thms to print theorems (named or not) proved in a file - command unsplit to put the proofs of all the theorems proved in a HOL-Light file in the same Lambdapi file - command concl to print the statements of theorems between two indexes - option --max-dup $k to share the proof of a theorem if it is duplicated more than $k times - renamings to handle the Multivariate library - test/Sig_mappings_N.v and test/Sig_With_N.v: axiomatizations of mappings_N.v and With_N.v respectively - test/Makefile: generates Spec_mappings_N.v and Spec_With_N.v, standalone versions of Sig_mappings_N.v and Sig_With_N.v, and checks the correctness of mappings_N.v and With_N.v wrt to those specification files the use of Spec_With_N.v instead of With_N.v allows to reduce the Coq checking time of Multivariate/make_complex.ml by 40% (21 hours instead of 35 hours) ### Changed - command link renamed into config and improved - update to work with HOL-Light 3.1 and Rocq 9.0 - minimize dependencies in spec files - theory_hol.lp: rename T into ⊤ and F into ⊥ ### Fixed - handling of type variables occurring in a proof but not in a statement
1 parent ee34283 commit 02a21b7

File tree

1 file changed

+39
-0
lines changed
  • packages/hol2dk/hol2dk.2.1.0

1 file changed

+39
-0
lines changed

packages/hol2dk/hol2dk.2.1.0/opam

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "HOL-Light to Dedukti/Lambdapi and Rocq translator"
3+
description: "HOL-Light to Dedukti/Lambdapi and Rocq translator"
4+
maintainer: ["Frédéric Blanqui"]
5+
authors: ["Frédéric Blanqui"]
6+
license: "CeCILL-2.1"
7+
homepage: "https://github.com/Deducteam/hol2dk"
8+
doc: "https://github.com/Deducteam/hol2dk/blob/master/README.md"
9+
bug-reports: "https://github.com/Deducteam/hol2dk/issues"
10+
depends: [
11+
"dune" {>= "3.7"}
12+
"ocaml" {>= "4.13"}
13+
#"hol_light" {= "3.1.0"}
14+
"odoc" {with-doc}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
]
30+
dev-repo: "git+https://github.com/Deducteam/hol2dk.git"
31+
url {
32+
src:
33+
"https://github.com/Deducteam/hol2dk/releases/download/2.1.0/hol2dk-2.1.0.tbz"
34+
checksum: [
35+
"sha256=57a91423ffa5d560b092a5285c67e7eba7c44bae9904e10e0688868a7ff6e656"
36+
"sha512=677d19ec68aac820790b5bb0c7afcff1440c00a3799c9d86edaefe006e733bdb12045b6f3534dee994658e8d013740ac182649441d01ed5314e3a3e22f911718"
37+
]
38+
}
39+
x-commit-hash: "1778a0b552015ecb385205ed5960e6e36f2f1fcf"

0 commit comments

Comments
 (0)