-
Notifications
You must be signed in to change notification settings - Fork 2
/
Mutation.java
91 lines (69 loc) · 2.23 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
package Individual;
import java.util.concurrent.ThreadLocalRandom;
import java.util.ArrayList;
public class Mutation {
public static ArrayList<Integer> Realocate(ArrayList<Integer> pai) {
int tam = pai.size();
int r1, r2, aux;
ArrayList<Integer> res = (ArrayList<Integer>) pai.clone();
// Gera dois numeros distintos, aleatoriamente, menores que o tamanho do pai
do {
r1 = ThreadLocalRandom.current().nextInt(0, tam);
r2 = ThreadLocalRandom.current().nextInt(0, tam);
} while (r1 == r2);
// Garante que r1 será sempre o menor numero
if (r1 > r2) {
aux = r1;
r1 = r2;
r2 = aux;
}
// Substitui o valor que estava na posição r2 até a posicção
// r1+1 e desloca os outros que estavam entre r1 e r2 para direita
for (int i = 0; (r2 - i) > r1; i++) {
aux = res.get(r2 - i);
res.set(r2 - i, res.get(r2 - (i + 1)));
res.set(r2 - (i + 1), aux);
}
return res;
}
public static ArrayList<Integer> Swap(ArrayList<Integer> pai) {
int tam = pai.size();
int r1, r2, aux;
ArrayList<Integer> res = (ArrayList<Integer>) pai.clone();
// Gera dois numeros distintos, aleatoriamente, menores que o tamanho do pai
do {
r1 = ThreadLocalRandom.current().nextInt(0, tam);
r2 = ThreadLocalRandom.current().nextInt(0, tam);
} while (r1 == r2);
// Substitui os valores
aux = res.get(r1);
res.set(r1, res.get(r2));
res.set(r2, aux);
return res;
}
public static ArrayList<Integer> Two_Opt(ArrayList<Integer> pai) {
int tam = pai.size();
int r1, r2, aux;
ArrayList<Integer> res = (ArrayList<Integer>) pai.clone();
// Gera dois numeros distintos, aleatoriamente, menores que o tamanho do pai
do {
r1 = ThreadLocalRandom.current().nextInt(0, tam);
r2 = ThreadLocalRandom.current().nextInt(0, tam);
} while (r1 == r2);
// Garante que r1 será sempre o menor numero
if (r1 > r2) {
aux = r1;
r1 = r2;
r2 = aux;
}
int n = 25;
for(int i=0; i < n; i++) {
int ri1 = ThreadLocalRandom.current().nextInt(r1, r2+1);
int ri2 = ThreadLocalRandom.current().nextInt(r1, r2+1);
aux = res.get(ri1);
res.set(ri1, res.get(ri2));
res.set(ri2, aux);
}
return res;
}
}