Automatically sideload belt

This commit is contained in:
hal8174 2025-02-09 23:13:51 +01:00
parent 84d00238ab
commit 27783aa5c7
5 changed files with 302 additions and 42 deletions

View file

@ -29,8 +29,8 @@ fn main() {
let l = ValidLayout {
max_tries: 4,
retries: 4,
start_size: Position::new(64, 64),
growth: Position::new(4, 4),
start_size: Position::new(128, 128),
growth: Position::new(16, 16),
};
let l = GeneticAlgorithm {
@ -38,7 +38,7 @@ fn main() {
population_size: 40,
population_keep: 8,
population_new: 2,
generations: 80,
generations: 40,
valid_layout: l,
};
let p = ConflictAvoidance {