Skip to content

Commit

Permalink
Merge pull request #1 from sybila/dev-symbolic-domains
Browse files Browse the repository at this point in the history
Symbolic domains proposal
  • Loading branch information
chudicek authored Sep 28, 2023
2 parents cfc566a + cf49c3b commit 0a7a0a3
Show file tree
Hide file tree
Showing 4 changed files with 453 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ Cargo.lock
# Added by cargo

/target

.idea
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ path = "src/lib.rs"

[dependencies]
biodivine-lib-bdd = "0.5.1"
dyn-clonable = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
serde-xml-rs = "0.6.0"
thiserror = "1.0.40"
Expand Down
11 changes: 11 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/// A private module which stores the implementation of the traits/structures relevant for
/// symbolic encoding of logical models.
///
/// TODO:
/// In the final library, we should re-export the relevant types from this module here.
mod symbolic_domain;

pub use symbolic_domain::{
GenericIntegerDomain, GenericStateSpaceDomain, SymbolicDomain, UnaryIntegerDomain,
};

pub fn add(x: i32, y: i32) -> i32 {
x + y
}
Expand Down
Loading

0 comments on commit 0a7a0a3

Please sign in to comment.