Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrej33 committed Nov 13, 2023
1 parent 52c9da7 commit 40577e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boolean-network-sketches"
version = "0.1.0"
version = "0.2.0"
authors = ["Ondřej Huvar <[email protected]>", "Samuel Pastva <[email protected]>"]
edition = "2021"
description = "Framework for Boolean network inference using BN sketches."
Expand Down
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ pub fn run_inference(
println!("SUMMARIZING ALL CONSISTENT CANDIDATES\n");
println!("There are following variants of update functions for each variable:");
summarize_candidates_naively(&graph, valid_colors.clone(), true);
}

if n_witnesses > 0 {
println!("\n---------------------------------\nGENERATING WITNESSES\n");
} else {
println!("\n---------------------------------\n");
if n_witnesses > 0 {
println!("\n---------------------------------\nGENERATING WITNESSES\n");
} else {
println!("\n---------------------------------\n");
}
}

// generate random witnesses if required
Expand Down

0 comments on commit 40577e7

Please sign in to comment.