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 ed56a74 commit 2942620
Show file tree
Hide file tree
Showing 8 changed files with 195 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 @@ -30,6 +30,7 @@ rand = "0.8"
rand_distr = "0.4"
rand_pcg = "0.3"
regex = "1.11"
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
Expand Up @@ -2,9 +2,9 @@ pub mod anomalies;
pub mod clause_cache;
pub mod counting;
pub mod extended_ddnnf;
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 2942620

Please sign in to comment.