Skip to content

Commit db4033a

Browse files
authored
dune-project: add maintenance_intent (#193)
1 parent 817502a commit db4033a

3 files changed

Lines changed: 10 additions & 11 deletions

File tree

dune-project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(lang dune 3.7)
1+
(lang dune 3.18)
22

33
(name hol2dk)
44

@@ -18,10 +18,10 @@
1818
(name hol2dk)
1919
(synopsis "HOL-Light to Dedukti/Lambdapi and Rocq translator")
2020
(description "HOL-Light to Dedukti/Lambdapi and Rocq translator")
21+
(maintenance_intent "(latest)")
2122
(depends
2223
dune
2324
(ocaml (>= 4.13))
24-
(hol_light (= 3.0.0))
2525
)
2626
)
2727

hol2dk.opam

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22
opam-version: "2.0"
33
synopsis: "HOL-Light to Dedukti/Lambdapi and Rocq translator"
44
description: "HOL-Light to Dedukti/Lambdapi and Rocq translator"
5-
x-maintenance-intent: ["(latest)"]
65
maintainer: ["Frédéric Blanqui"]
76
authors: ["Frédéric Blanqui"]
87
license: "CeCILL-2.1"
98
homepage: "https://github.com/Deducteam/hol2dk"
109
doc: "https://github.com/Deducteam/hol2dk/blob/master/README.md"
1110
bug-reports: "https://github.com/Deducteam/hol2dk/issues"
1211
depends: [
13-
"dune" {>= "3.7"}
12+
"dune" {>= "3.18"}
1413
"ocaml" {>= "4.13"}
15-
#"hol_light" {= "3.1.0"}
1614
"odoc" {with-doc}
1715
]
1816
build: [
@@ -30,3 +28,4 @@ build: [
3028
]
3129
]
3230
dev-repo: "git+https://github.com/Deducteam/hol2dk.git"
31+
x-maintenance-intent: ["(latest)"]

main.ml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ hol2dk options command arguments
2020
Options
2121
-------
2222
23-
--root-path MODNAME: set lambdapi and coq's root_path (default is HOLLight)
23+
--root-path MODNAME: set lambdapi and coq's root_path (default to HOLLight)
2424
2525
--max-dup INT: maximum number of theorem duplications
2626
27-
--max-proof-size INT: maximum size of proof files (default is 500_000)
27+
--max-proof-size INT: maximum size of proof files (default to 500_000)
2828
29-
--max-abbrev-size INT: maximum size of term abbreviation files (default is 2_000_000)
29+
--max-abbrev-size INT: maximum size of term abbreviation files (default to 2_000_000)
3030
3131
--use-sharing: define term abbreviations using let's
3232
@@ -95,9 +95,9 @@ hol2dk split $base
9595
9696
hol2dk unsplit $base $module ...
9797
for each file $module, generate the files $module.sti, $module.pos,
98-
$module.use and $module.nbp for all the theorems $thm proved in
99-
$HOLLIGHT_DIR/$module.ml, remove all the files $thm.sti,
100-
$thm.pos, $thm.use and $thm.nbp, and update $base.thm
98+
$module.use, $module.nbp and, for each theorem $thm proved in
99+
$HOLLIGHT_DIR/$module.ml, remove the files $thm.sti, $thm.pos, $thm.use and
100+
$thm.nbp, and update $base.thp
101101
102102
hol2dk theorem $base $thm.lp
103103
generate the lp proof of the theorem $thm

0 commit comments

Comments
 (0)