mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
* Implemented a nom-based parser to read the adf * Grounded semantics (naive) re-implemented * Docs added * Updated Cargo.toml with more Manifest information * Version update * Added sort-methods to the parser, so the var-order can be adjusted * Added sort functionality to the main function * Added adf-instances as a submodule to the res-folder * Added README information for the extended integration tests * Rewritten main-function Closes #3
25 lines
716 B
TOML
25 lines
716 B
TOML
[package]
|
|
name = "adf_bdd"
|
|
version = "0.1.2"
|
|
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 semantics by utilising OBDDs - ordered binary decision diagrams"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "2.33.*"
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2.*"
|
|
test-generator = "0.3.0"
|