Fix factory.yml for fast-inserter

This commit is contained in:
hal8174 2025-02-05 22:50:35 +01:00
parent c472a28591
commit abf2cac093
4 changed files with 85 additions and 11 deletions

View file

@ -76,7 +76,7 @@ impl Layouter for GeneticAlgorithm {
if population[0].1 < best_result.1 {
best_result = population[0].clone();
}
println!("completed generation {g}\nscore: {}", population[0].1);
eprintln!("completed generation {g}\nscore: {}", population[0].1);
}
Some(best_result.0)