-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDifferentialEvolution.js
153 lines (130 loc) · 4.36 KB
/
DifferentialEvolution.js
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
"use strict";
importScripts('./ContinuousOptimizer.js');
/**
* Basic DE algorithm (DE/rand/1)
*/
function DifferentialEvolution(parameters) {
ContinuousOptimizer.call(this, parameters);
this.F = parameters.F;
this.CR = parameters.CR;
this.solutions = [];
}
;
DifferentialEvolution.prototype = Object.create(ContinuousOptimizer.prototype);
DifferentialEvolution.prototype.constructor = ContinuousOptimizer;
DifferentialEvolution.prototype.solve = function () {
var numOfFunctionEval = 0;
var i, rA, rB, rC, R, rI;
var a = [], b = [], c = [], y = [], x = [];
this.createInitialPopulation();
while (numOfFunctionEval + this.NP <= this.maxFEs) {
for (i = 0; i < this.NP; i++) {
//Pick three agents a, b and c from the population at random
do {
rA = Math.floor((Math.random() * this.NP));
} while (rA === i);
a = this.solutions[rA].position;
do {
rB = Math.floor((Math.random() * this.NP));
} while (rB === i || rB === rA);
b = this.solutions[rB].position;
do {
rC = Math.floor((Math.random() * this.NP));
} while (rC === i || rC === rA || rC === rB);
c = this.solutions[rC].position;
R = Math.floor((Math.random() * this.dimension)); //Pick a random dimension index R
x = this.solutions[i].position; // current solution
y = x.slice(0);
for (var j = 0; j < this.dimension; j++) {
rI = Math.random();
if (rI < this.CR || j === R) {
y[j] = a[j] + this.F * (b[j] - c[j]);
} else {
y[j] = x[j];
}
}
y = this.fixBoundary(y);
var fy = this.calculateObjValue(y);
if (fy < this.solutions[i].fitness) {
this.solutions[i].position = y.slice(0);
this.solutions[i].fitness = fy;
if (fy < this.globalBest.fitness) {
this.globalBest.position = y.slice(0);
this.globalBest.fitness = fy;
postMessage([numOfFunctionEval, this.globalBest.fitness, this.globalBest.position]);
}
}
}
numOfFunctionEval += this.NP;
}
postMessage([numOfFunctionEval, this.globalBest.fitness, this.globalBest.position]);
};
DifferentialEvolution.prototype.createInitialPopulation = function () {
var i, min = Number.MAX_VALUE, minIndex = 0;;
//initialization step
for (var i = 0; i < this.NP; i++) {
var randPos = this.createRandomPosition(this.lowerBound, this.upperBound, this.dimension);
var randF = this.calculateObjValue(randPos);
this.solutions[i] = new Solution(randPos, randF); //create random solution
if (randF < min) {
min = randF;
minIndex = i;
}
}
this.globalBest = new Solution(this.solutions[minIndex].position.slice(0), min);
};
onmessage = function (e) {
var func;
switch (e.data[4]) {
case "sphere":
func = sphere;
break;
case "schwefel2_22":
func = schwefel2_22;
break;
case "schwefel1_2":
func = schwefel1_2;
break;
case "schwefel2_21":
func = schwefel2_21;
break;
case "rosenbrock":
func = rosenbrock;
break;
case "step":
func = step;
break;
case "quarticWithNoise":
func = quarticWithNoise;
break;
case "schwefel2_26":
func = schwefel2_26;
break;
case "rastrigin":
func = rastrigin;
break;
case "ackley":
func = ackley;
break;
case "griewank":
func = griewank;
break;
case "penalized":
func = penalized;
break;
default:
func = null;
}
var parameters = {
"NP": e.data[0],
"CR": e.data[1],
"F": e.data[2],
"maxFEs": e.data[3],
"objFunc": func,
"upperBound": e.data[5],
"lowerBound": e.data[6],
"dimension": e.data[7]
};
var de = new DifferentialEvolution(parameters);
de.solve();
};