Set correct beltspeed for input and output of factory block

This commit is contained in:
hal8174 2025-02-08 23:22:24 +01:00
parent e6e5001334
commit 84d00238ab
2 changed files with 61 additions and 27 deletions

View file

@ -24,7 +24,7 @@ fn main() {
let text = std::fs::File::open(&args.path).unwrap();
let factory_graph: FactoryGraph = serde_yaml::from_reader(text).unwrap();
dbg!(&factory_graph);
// dbg!(&factory_graph);
let l = ValidLayout {
max_tries: 4,
@ -36,8 +36,8 @@ fn main() {
let l = GeneticAlgorithm {
mutation_retries: 20,
population_size: 40,
population_keep: 5,
population_new: 5,
population_keep: 8,
population_new: 2,
generations: 80,
valid_layout: l,
};