We can create a new single-population model

This commit is contained in:
mindv0rtex
2021-02-25 16:23:56 -05:00
parent bb1b5ddac0
commit 6a2d19e984
3 changed files with 83 additions and 17 deletions

View File

@@ -2,4 +2,7 @@ mod blur;
mod grid;
mod model;
fn main() {}
fn main() {
let model = model::Model::new(4, 4, 20, 1);
println!("{:#?}", model);
}