Remove Flip

It wasn't really adding anything to the tests
This commit is contained in:
Mark Hoekveen
2019-03-06 20:06:28 +01:00
parent f18c4be520
commit 3ffb39ea73
-11
View File
@@ -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) {