From 3ffb39ea73a9afa8b948e06ffa664f3d15ec0f7e Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Wed, 6 Mar 2019 20:06:28 +0100 Subject: [PATCH] Remove Flip It wasn't really adding anything to the tests --- Mutation.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Mutation.h b/Mutation.h index 2ff655c..b062aa2 100644 --- a/Mutation.h +++ b/Mutation.h @@ -38,17 +38,6 @@ public: }; //Mirrors over the vertical axis -public: - Image* getMutated(Image* img) { - Image* mut = new Image(*img); - mut->flip(); - return mut; - } - string ToString() { - return "Flip"; - } -}; - class Flop : public Mutation { public: Image * getMutated(Image* img) {