dignea  1.0.0
Diverse Instance Generator with Novelty Search and Evolutionary Algorithms
MutationTypes.h
Go to the documentation of this file.
1 
11 #ifndef DIGNEA_MUTATIONTYPES_H
12 #define DIGNEA_MUTATIONTYPES_H
13 
14 #include <string>
15 
16 using namespace std;
17 
22 enum class MutType { UniformAll, UniformOne, SwapMutation };
23 
24 #endif // DIGNEA_MUTATIONTYPES_H
MutType
Type of Mutation Operators implemented in dignea.
Definition: MutationTypes.h:22
Swap Mutation Operator for Permutation Based Problems like TSP. Fixes the first and last genes to zer...
Definition: SwapMutation.h:28