File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -370,14 +370,9 @@ fn main() -> anyhow::Result<()> {
370370 eprintln ! ( ) ;
371371 eprintln ! (
372372 "{:>4} │ {:>18} │ {:>18}" ,
373- "bits" ,
374- "systematic (worst)" ,
375- "systematic (avg)"
376- ) ;
377- eprintln ! (
378- "{:->4}-┼-{:->18}-┼-{:->18}" ,
379- "" , "" , ""
373+ "bits" , "systematic (worst)" , "systematic (avg)"
380374 ) ;
375+ eprintln ! ( "{:->4}-┼-{:->18}-┼-{:->18}" , "" , "" , "" ) ;
381376
382377 for bits in 1u8 ..=32 {
383378 // space = 2^(bits-1) because MSB is always 1
@@ -391,9 +386,7 @@ fn main() -> anyhow::Result<()> {
391386
392387 let systematic_worst_human = pretty ( systematic_worst_secs) ;
393388 let systematic_avg_human = pretty ( systematic_avg_secs) ;
394- eprintln ! (
395- "{bits:>4} │ {systematic_worst_human:>18} │ {systematic_avg_human:>18}"
396- ) ;
389+ eprintln ! ( "{bits:>4} │ {systematic_worst_human:>18} │ {systematic_avg_human:>18}" ) ;
397390 }
398391
399392 eprintln ! ( "\n Systematic search explanation:" ) ;
You can’t perform that action at this time.
0 commit comments