Skip to content

Commit

Permalink
feat: refactor statistics to create serialisable data structures
Browse files Browse the repository at this point in the history
  • Loading branch information
uulm-janbaudisch committed Jan 27, 2025
1 parent 02d5695 commit 8c4138e
Show file tree
Hide file tree
Showing 8 changed files with 182 additions and 254 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions ddnnife/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ petgraph = "0.7"
rand = "0.8"
rand_distr = "0.4"
rand_pcg = "0.3"
serde = { version = "1.0", features = ["derive"] }
streaming-iterator = "0.1"
tempfile = "3.15"
uniffi = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion ddnnife/src/ddnnf.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pub mod anomalies;
pub mod clause_cache;
pub mod counting;
pub mod heuristics;
pub mod multiple_queries;
pub mod node;
pub mod statistics;
pub mod stream;

use self::{clause_cache::ClauseCache, node::Node};
Expand Down
246 changes: 0 additions & 246 deletions ddnnife/src/ddnnf/heuristics.rs

This file was deleted.

Loading

0 comments on commit 8c4138e

Please sign in to comment.