| 1 | [[PageOutline]] |
| 2 | = Move Makers = |
| 3 | |
| 4 | ---- |
| 5 | == Move Makers for Binary Encoding == |
| 6 | === !OneBitflipMoveMaker === |
| 7 | Peforms a one bitflip move on a given !BitVector and updates the quality. |
| 8 | |
| 9 | '''Operator Parameters:''' |
| 10 | ||= Parameter =||= Description =|| |
| 11 | || !BinaryVector || The solution as !BinaryVector. || |
| 12 | || !MoveQuality || The relative quality of the move. || |
| 13 | || !OneBitflipMove || The move to evaluate. || |
| 14 | || Quality || The quality of a solution. || |
| 15 | |
| 16 | ---- |
| 17 | == Move Makers for Permutation Encoding == |
| 18 | === !InversionMoveMaker === |
| 19 | Peforms an inversion move (2-opt) on a given permutation and updates the quality. |
| 20 | |
| 21 | '''Operator Parameters:''' |
| 22 | ||= Parameter =||= Description =|| |
| 23 | || !InversionMove || The move to evaluate. || |
| 24 | || !MoveQuality || The relative quality of the move. || |
| 25 | || !Permutation || The solution as !Permutation. || |
| 26 | || Quality || The quality of a solution. || |
| 27 | |
| 28 | === !TranslocationMoveMaker === |
| 29 | Peforms a translocation or insertion move (3-opt) on a given permutation and updates the quality. |
| 30 | |
| 31 | '''Operator Parameters:''' |
| 32 | ||= Parameter =||= Description =|| |
| 33 | || !MoveQuality || The relative quality of the move. || |
| 34 | || Permutation || The solution as Permutation. || |
| 35 | || Quality || The quality of a solution. || |
| 36 | || !TranslocationMove || The move to evaluate. || |
| 37 | |
| 38 | ---- |
| 39 | == Move Makers for Real Vector Encoding == |
| 40 | === !AdditiveMoveMaker === |
| 41 | Peforms an additive move on a given real vector and updates the quality. |
| 42 | |
| 43 | '''Operator Parameters:''' |
| 44 | ||= Parameter =||= Description =|| |
| 45 | || !AdditiveMove || The move to evaluate. || |
| 46 | || !MoveQuality || The relative quality of the move. || |
| 47 | || !RealVector || The solution as real vector. || |
| 48 | || Quality || The quality of a solution. || |