Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
samparsky committed Jan 9, 2024
1 parent 34f8ab3 commit 77ec409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
fn execute_mutation(params: Vec<MutateParams>) -> Result<(), Box<dyn std::error::Error>> {
let start = std::time::Instant::now();
let result = run_mutate(params)?;
let total_num_mutants = result.values().flat_map(|x|x).count();
let t = start.elapsed().as_secs_f64();
let total_num_mutants = result.values().flat_map(|x|x).count();
println!(
"Generated {} mutants in {:.2} seconds",
total_num_mutants, t
Expand Down

0 comments on commit 77ec409

Please sign in to comment.