-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMutation.java
executable file
·98 lines (84 loc) · 3.38 KB
/
Mutation.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package GeneticAlgorithms;
import GeneticObjects.Chromosome;
import GeneticObjects.City;
import java.util.Random;
/**
* Used for mutating the Chromosomes.
*/
class Mutation {
/**
* Class cannot be instantiated, as there would be no point, since all
* the methods are static.
*/
private Mutation () {}
/**
* Selects a city and inserts it into a random place.
* @param chromosome The Chromosome who's cities will be swapped.
* @param random The Random object used for randomly selecting the cities
* @return the mutated Chromosome
*/
static Chromosome insertion (Chromosome chromosome, Random random) {
City[] cities = chromosome.getArray();
int randomIndex = random.nextInt(cities.length);
int randomDestination = random.nextInt(cities.length);
if (randomIndex < randomDestination) {
City temp = cities[randomIndex];
for (int i = randomIndex; i < randomDestination; i++) {
cities[i] = cities[i+1];
}
cities[randomDestination] = temp;
} else {
City temp = cities[randomIndex];
for (int i = randomIndex; i > randomDestination; i--) {
cities[i] = cities[i-1];
}
cities[randomDestination] = temp;
}
return new Chromosome(cities);
}
/**
* Swaps two randomly selected cities.
* @param chromosome The Chromosome who's cities will be swapped.
* @param random The Random object used for randomly selecting the cities
* @return the mutated Chromosome
*/
static Chromosome reciprocalExchange (Chromosome chromosome, Random random) {
City[] cities = chromosome.getArray();
int l = cities.length;
swap(cities, random.nextInt(l), random.nextInt(l));
return new Chromosome(cities);
}
/**
* Pick a subset of Cities and randomly re-arrange them.
* @param chromosome The Chromosome who's cities will be swapped.
* @param random The Random object used for randomly selecting the cities
* @return the mutated Chromosome
*/
static Chromosome scrambleMutation (Chromosome chromosome, Random random) {
/**
* The subset Cities include wrapping.
* Example: if there is a Chromosome with 10 cities and randomIndexStart is 8
* and randomIndexEnd is 2, that means that the subset will include the cities
* at indexes 8, 9, 1, and 2.
*/
City[] cities = chromosome.getArray();
int randomIndexStart = random.nextInt(cities.length);
int randomIndexEnd = random.nextInt(cities.length);
for (int i = randomIndexStart; i%cities.length != randomIndexEnd; i++) {
int r = random.nextInt(Math.abs(i%cities.length - randomIndexEnd));
swap(cities, i%cities.length, (i+r)%cities.length);
}
return new Chromosome(cities);
}
/**
* Helper method for swapping two Cities in a Chromosome to change the tour.
* @param array the array of Cities to do the swap in
* @param i the index of the first City
* @param j the index of the second City
*/
private static void swap (City[] array, int i, int j) {
City temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}