-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
State of the art BDD library, naive implementation, and Hybrid-approach available in the first beta-release version 0.2.0 * ADD biodivine as an obdd library to adf-obdd * Implement restrict-wrapper on Biodivine * Testcases changed to use biodivine for grounded. * API unified * ADD stable and complete with biodivine * moved main.rs to bin folder * ADD biodivine -> naive translation * ADD hybrid approach instantiation + grounded by biodivine, then naive approach with memoization * TIDY Readme, doc, tests
- Loading branch information
Showing
16 changed files
with
1,449 additions
and
267 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
[package] | ||
name = "adf_bdd" | ||
version = "0.1.4" | ||
version = "0.2.0" | ||
authors = ["Stefan Ellmauthaler <[email protected]>"] | ||
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 semantics by utilising OBDDs - ordered binary decision diagrams" | ||
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" | ||
[dependencies] | ||
clap = "2.33.*" | ||
structopt = "0.3.25" | ||
|
@@ -22,6 +23,7 @@ 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" | ||
|
||
[dev-dependencies] | ||
test-log = "0.2.*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.