From fd7639c32fb0d11e49d50f5473e5c795d8783049 Mon Sep 17 00:00:00 2001 From: Alan Sartorio Date: Sat, 12 Mar 2022 21:28:35 -0300 Subject: [PATCH] Formatting. --- src/step.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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>);