mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
Implemented various optimisations of the 0.2.0 version, including different filtering and rewriting approaches for model enumerations * ADD prefilter for stable model computation (hybrid and naive) * ADD implementation with one big rewritten formula instead of many * ADD second version of bdd rewriting method * FIX documentation, UPD flake * UPD Readme, usage * ADD hybrid options for grounded and transformation
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
name = "adf_bdd"
|
|
version = "0.2.0"
|
|
authors = ["Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>"]
|
|
edition = "2021"
|
|
repository = "https://github.com/ellmau/adf-obdd/"
|
|
license = "GPL-3.0-only"
|
|
exclude = ["res/", "./flake*", "*.nix", ".envrc", "_config.yml"]
|
|
|
|
description = "Solver for ADFs grounded, complete, and stable semantics by utilising OBDDs - ordered binary decision diagrams"
|
|
build = "build.rs"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[[bin]]
|
|
name="adf_bdd"
|
|
[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]
|
|
clap = "2.33.*"
|
|
structopt = "0.3.25"
|
|
log = { version = "0.4", features = [ "max_level_trace", "release_max_level_info" ] }
|
|
env_logger = "0.9"
|
|
nom = "7.1.0"
|
|
lexical-sort = "0.3.1"
|
|
serde = { version = "1.0", features = ["derive","rc"] }
|
|
serde_json = "1.0"
|
|
biodivine-lib-bdd = "0.3.0"
|
|
derivative = "2.2.0"
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2.*"
|
|
quickcheck = "1"
|
|
quickcheck_macros = "1"
|
|
assert_cmd = "2.0"
|
|
predicates = "2.1"
|
|
assert_fs = "1.0" |