| ... | ... | @@ -285,10 +285,10 @@ fn updateStats() error{OutOfMemory}!void { |
| 285 | 285 | , .{ |
| 286 | 286 | hdr.n_runs, |
| 287 | 287 | hdr.unique_runs, |
| 288 | | @as(f64, @floatFromInt(hdr.unique_runs)) / @as(f64, @floatFromInt(hdr.n_runs)), |
| 288 | @as(f64, @floatFromInt(hdr.unique_runs)) / @as(f64, @floatFromInt(hdr.n_runs)) * 100, |
| 289 | 289 | covered_src_locs, |
| 290 | 290 | total_src_locs, |
| 291 | | @as(f64, @floatFromInt(covered_src_locs)) / @as(f64, @floatFromInt(total_src_locs)), |
| 291 | @as(f64, @floatFromInt(covered_src_locs)) / @as(f64, @floatFromInt(total_src_locs)) * 100, |
| 292 | 292 | avg_speed, |
| 293 | 293 | }); |
| 294 | 294 | defer gpa.free(html); |