Start hex grid and make tests pass

This commit is contained in:
2023-03-04 18:11:53 +00:00
parent 92ef0f728c
commit 9ff002b19c
7 changed files with 67 additions and 46 deletions
-9
View File
@@ -1,19 +1,10 @@
#![feature(array_zip)]
use std::path::PathBuf;
use rand::prelude::*;
mod system;
mod example_systems;
use system::walker::{LocalRandomWalker, Walker};
use system::grid::VectorStorage;
use num_integer::Integer;
use rand::rngs::SmallRng;
use crate::system::grid::Position;
use crate::system::model::DLASystem;
use crate::system::Storage;
use clap::Parser;
use crate::example_systems::stick_probability;