diff --git a/README.md b/README.md index 9b68e34..c16c69b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ ## Highest priority: -- Clean up `twist` - maybe make a struct or trait. - Do transforms compose in the *reverse* of automata_scratch? This appears to be the case. diff --git a/src/examples.rs b/src/examples.rs index 156a994..e99500e 100644 --- a/src/examples.rs +++ b/src/examples.rs @@ -323,7 +323,7 @@ impl Twist { // Meant to be a copy of twist_from_gen from Python & automata_scratch pub fn start(&self) -> RuleEval { - let n = self.seed.len(); + let n = self.seed_sub.len(); // Quarter-turn in radians: let qtr = std::f32::consts::FRAC_PI_2;