mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
* Add a channel to inform other threads about bdd updates * Redisign sender and receiver model for bdds * Add options for both directions and allow to utilise none, one, or both at the same time.
52 lines
1.7 KiB
TOML
52 lines
1.7 KiB
TOML
[package]
|
|
name = "adf_bdd"
|
|
version = "0.3.1"
|
|
authors = ["Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>"]
|
|
edition = "2021"
|
|
homepage = "https://ellmau.github.io/adf-obdd/"
|
|
repository = "https://github.com/ellmau/adf-obdd/"
|
|
license = "MIT"
|
|
exclude = ["res/", "./flake*", "flake.lock", "*.nix", ".envrc", "_config.yml", "tarpaulin-report.*", "*~"]
|
|
|
|
description = "Library to solve grounded, complete, and stable ADF-semantics by utilising OBDDs - ordered binary decision diagrams"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name="adf_bdd"
|
|
path = "src/lib.rs"
|
|
test = true
|
|
doctest = true # Documentation examples are tested by default.
|
|
bench = true # Is benchmarked by default.
|
|
doc = true # Is documented by default.
|
|
harness = true # Use libtest harness.
|
|
edition = "2021" # The edition of the target.
|
|
crate-type = ["lib"] # The crate types to generate.
|
|
|
|
[dependencies]
|
|
log = { version = "0.4"}
|
|
nom = "7.1.1"
|
|
lexical-sort = "0.3.1"
|
|
serde = { version = "1.0", features = ["derive","rc"] }
|
|
serde_json = "1.0"
|
|
biodivine-lib-bdd = "0.4.0"
|
|
derivative = "2.2.0"
|
|
roaring = "0.9.0"
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
crossbeam-channel = "0.5"
|
|
rand = {version = "0.8.5", features = ["std_rng"]}
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2"
|
|
env_logger = "0.9"
|
|
quickcheck = "1"
|
|
quickcheck_macros = "1"
|
|
|
|
[features]
|
|
default = ["adhoccounting", "variablelist", "frontend" ]
|
|
adhoccounting = [] # count paths ad-hoc - disable if counting is not needed
|
|
importexport = []
|
|
variablelist = [ "HashSet" ]
|
|
HashSet = []
|
|
adhoccountmodels = [ "adhoccounting" ] # count models as well as paths ad-hoc note that facet methods will need this feature too
|
|
benchmark = ["adhoccounting", "variablelist"] # set of features for speed benchmarks
|
|
frontend = [] |