-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrsdd-hs.cabal
53 lines (46 loc) · 1.6 KB
/
rsdd-hs.cabal
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cabal-version: 3.4
name: rsdd-hs
version: 0.1.0.0
synopsis: Haskell bindings for RSDD
description:
Haskell bindings for RSDD, a rust implementation of decision diagrams (both
binary decision diagrams and sentential decision diagrams). RSDD is a
efficient, safe, and modern implementation of decision diagrams. Core design
concerns include ease of integration, performance, and ease of
experimentation. The hope is that this library will be a useful platform for
experimentation and iteration on new ideas for these important data
structures.
These haskell bindings use the C interop exposed in RSDD which assumes static
lifetimes for all managers and pointers. For finer granularity with lifetimes,
please use RSDD directly.
license: MIT
license-file: LICENSE
author: Sam Stites
maintainer: Sam Stites <spnony@f.cge.qri>#rot13
-- copyright:
category: Data
build-type: Simple
extra-doc-files: CHANGELOG.org
-- Extra source files to be distributed with the package, such as examples, or a tutorial module.
-- extra-source-files:
common base
default-language: GHC2021
ghc-options: -Wall
build-depends: base
-- base ^>=4.17.0.0
library
import: base
exposed-modules: Foreign.RSDD
extra-libraries: rsdd
hs-source-dirs: lib
test-suite rsdd-hs-test
import: base
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: rsdd-hs
executable example
import: base
hs-source-dirs: examples
main-is: Main.hs
build-depends: rsdd-hs