Skip to content

Commit

Permalink
style: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukáš Chudíček committed Dec 6, 2023
1 parent cc3ce07 commit aed5c82
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions examples/test_reachability_bwd.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use biodivine_lib_logical_models::test_utils::ComputationStep;


/// This binary is testing the implementation correctness by running reachability on the
/// input model and validating that the set of reachable states has the same cardinality
/// in every step.
Expand All @@ -20,7 +19,10 @@ fn main() {
cmp.perform_bwd_step();
cmp.check_consistency();
}
println!("Completed one wave of reachability. Reinitializing with {} states remaining.", cmp.remaining());
println!(
"Completed one wave of reachability. Reinitializing with {} states remaining.",
cmp.remaining()
);
}
println!("Test completed successfully. Whole state space explored.");
}
6 changes: 4 additions & 2 deletions examples/test_reachability_fwd.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use biodivine_lib_logical_models::test_utils::ComputationStep;


/// This binary is testing the implementation correctness by running reachability on the
/// input model and validating that the set of reachable states has the same cardinality
/// in every step.
Expand All @@ -20,7 +19,10 @@ fn main() {
cmp.perform_fwd_step();
cmp.check_consistency();
}
println!("Completed one wave of reachability. Reinitializing with {} states remaining.", cmp.remaining());
println!(
"Completed one wave of reachability. Reinitializing with {} states remaining.",
cmp.remaining()
);
}
println!("Test completed successfully. Whole state space explored.");
}

0 comments on commit aed5c82

Please sign in to comment.