forked from arlencox/mlbdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
20 lines (17 loc) · 1.08 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(lang dune 2.7)
(name mlbdd)
(version 0.7.2)
(generate_opam_files true)
(source (github arlencox/mlbdd))
(license BSD)
(authors "Arlen Cox <[email protected]>")
(maintainers "Arlen Cox <[email protected]>")
(homepage "https://github.com/arlencox/mlbdd")
(package
(name mlbdd)
(synopsis "An OCaml library for Binary Decision Diagrams (BDDs)")
(description "The mlbdd library provides a simple, easy-to-use, easy-to-extend implementation of binary decision diagrams (BDDs) in OCaml. It is well tested and well documented. The library itself has no dependencies and is thus easy to include in applications that might, for example, be compiled with js_of_ocaml or other tools that rely on pure OCaml. It is also easier to integrate with existing projects due to its lack of dependencies. Critically, this BDD implementation uses a garbage-collection-aware hashing scheme, so that unused nodes can be collected. Additionally, this implementation uses complement edges to significantly improve performance over the simplest BDD implementations.")
(depends
(ounit2 :with-test)
(ocaml (>= 4.04.0)))
)