rename GenericSim -> AbstractSim

This commit is contained in:
2022-07-28 22:32:29 -07:00
parent 3104c06d95
commit 4f2345f608
8 changed files with 65 additions and 65 deletions

View File

@@ -108,7 +108,7 @@ impl<R: Real> CellStateWithM<R> {
}
// TODO: the Send/Sync bounds here could be removed with some refactoring
pub trait GenericSim: Send + Sync {
pub trait AbstractSim: Send + Sync {
type Material;
fn meta(&self) -> SimMeta<f32>;
fn step_no(&self) -> u64;