Parallel agents movement.

This commit is contained in:
mindv0rtex
2021-02-26 14:19:05 -05:00
parent cbc3fcbe06
commit 241e6ba6bf
5 changed files with 72 additions and 21 deletions

View File

@@ -1,6 +1,8 @@
use physarum::model;
fn main() {
let model = model::Model::new(4, 4, 20, 1);
let mut model = model::Model::new(4, 4, 20, 1);
println!("{:#?}", model);
model.step();
println!("{:#?}", model);
}