-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
31 lines (29 loc) · 1 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
opam-version: "2.0"
maintainer: "valeran.maytie@universite-paris-saclay.fr"
homepage: "https://github.com/valoran-M/diqt/"
bug-reports: "https://github.com/valoran-M/diqt/issues"
license: "CECILL-B"
build: [["coq_makefile" "-f" "_CoqProject" "-o" "Makefile" ]
[ make "-j" "%{jobs}%" ]]
install: [ make "install" ]
depends: [
"coq" {>= "8.14"}
]
dev-repo: "git+https://github.com/valoran-M/diqt.git"
tags: [
"keyword:hashtables"
"keyword:primitive arrays"
"keyword:data structures"
"keyword:dictionaries"
"category:Computer Science/Data Types and Data Structures"
"logpath:Diqt"
]
authors: [ "Valeran Maytié <valeran.maytie@universite-paris-saclay.fr>" ]
synopsis:
"Formalization of hashtables with Radix trees and PArray"
description: """
This library provides two hashtable structures. They use either Radix trees
and positive integers, or persistent arrays (Coq.PArray) and machine integers.
Their purpose is to be efficient when evaluating the code with Coq's virtual
machine (vm_compute).
"""