style: rustfmt the Phase 1 test additions
The per-file Phase 1 test commits were written without running rustfmt as I went; this pass formats the new test code (long assert_eq! lines wrapped, etc.). Formatting-only — no behavioural change.
This commit is contained in:
@@ -152,7 +152,10 @@ fn main() {
|
||||
println!("Source: TSPLIB95 (Groetschel/Padberg)");
|
||||
println!();
|
||||
println!("Known optimum: {:>8.0}", KNOWN_OPTIMUM);
|
||||
println!("GA best found: {:>8.0} (gap {:+.0}, {:+.2}%)", best_len, gap_abs, gap_pct);
|
||||
println!(
|
||||
"GA best found: {:>8.0} (gap {:+.0}, {:+.2}%)",
|
||||
best_len, gap_abs, gap_pct
|
||||
);
|
||||
println!();
|
||||
println!("Total evaluations: {}", result.evaluations);
|
||||
println!("Final population: {}", result.population.len());
|
||||
|
||||
Reference in New Issue
Block a user