diff --git a/src/step.rs b/src/step.rs index 9e6150f..4cf0290 100644 --- a/src/step.rs +++ b/src/step.rs @@ -1,10 +1,10 @@ -use std::error::Error; -use std::str::FromStr; use bimap::BiMap; use enum_map::Enum; use rand::distributions::uniform::SampleRange; use rand::seq::SliceRandom; +use std::error::Error; use std::ops::Neg; +use std::str::FromStr; use strum::IntoEnumIterator; use strum_macros::EnumIter; @@ -400,7 +400,6 @@ pub struct Step { pub count: i8, } - impl Neg for Step { type Output = Self; @@ -412,7 +411,6 @@ impl Neg for Step { } } - #[derive(Clone)] pub struct Algorythm(pub Vec>);