Set correct beltspeed for input and output of factory block
This commit is contained in:
parent
e6e5001334
commit
84d00238ab
2 changed files with 61 additions and 27 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue