-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathParticleSwarmOptimization.js
153 lines (133 loc) · 4.97 KB
/
ParticleSwarmOptimization.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');
function ParticleSwarmOptimization(parameters) {
ContinuousOptimizer.call(this, parameters);
this.omega = parameters.omega;
this.phi_p = parameters.phi_p;
this.phi_g = parameters.phi_g;
this.swarm = [];
}
;
ParticleSwarmOptimization.prototype = Object.create(ContinuousOptimizer.prototype);
ParticleSwarmOptimization.prototype.constructor = ContinuousOptimizer;
ParticleSwarmOptimization.prototype.createInitialPopulation = function () {
//create initial population
var i, d, randomPos, randomVelocity = [], f_i;
for (i = 0; i < this.NP; i++) {
randomPos = this.createRandomPosition(this.lowerBound, this.upperBound, this.dimension);
for (d = 0; d < this.dimension; d++) {
randomVelocity[d] = Math.random() * (this.upperBound - this.lowerBound);
randomVelocity[d] *= Math.random() > 0.5 ? -1 : 1; //U(-|bup-blo|, |bup-blo|)
}
f_i = this.calculateObjValue(randomPos);
this.swarm[i] = new Particle(randomPos, f_i, randomVelocity.slice(0));
//update globalBest if there is better fitness
if (i == 0 || f_i < this.globalBest.fitness) {
this.globalBest = new Solution(randomPos.slice(0), f_i);
}
}
};
ParticleSwarmOptimization.prototype.solve = function () {
var numOfFunctionEval = 0, i, d, r_p, r_g, particle;
this.createInitialPopulation();
while (numOfFunctionEval + this.NP <= this.maxFEs) {
for (i = 0; i < this.NP; i++) {
particle = this.swarm[i]; //get the next particle
for (d = 0; d < this.dimension; d++) {
//pick random numbers
r_p = Math.random();
r_g = Math.random();
//update the particle's velocity
particle.velocity[d] = this.omega * particle.velocity[d]
+ this.phi_p * r_p * (particle.bestPosition[d] - particle.position[d])
+ this.phi_g * r_g * (this.globalBest.position[d] - particle.position[d]);
}
//update the particle's position
for (d = 0; d < this.dimension; d++) {
particle.position[d] += particle.velocity[d];
}
particle.position = this.fixBoundary(particle.position);
//update the particle's fitness
particle.fitness = this.calculateObjValue(particle.position);
if (particle.fitness < particle.bestFitness) {
//update the particle's best known position
particle.bestPosition = particle.position.slice(0);
particle.bestFitness = particle.fitness;
if (particle.bestFitness < this.globalBest.fitness) {
//update the swarm's best known position
this.globalBest.position = particle.bestPosition.slice(0);
this.globalBest.fitness = particle.bestFitness;
postMessage([numOfFunctionEval, this.globalBest.fitness, this.globalBest.position]);
}
}
}
numOfFunctionEval += this.NP;
}
postMessage([numOfFunctionEval, this.globalBest.fitness, this.globalBest.position]);
};
onmessage = function (e) {
var func;
switch (e.data[5]) {
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],
"omega": e.data[1],
"phi_p": e.data[2],
"phi_g": e.data[3],
"maxFEs": e.data[4],
"objFunc": func,
"upperBound": e.data[6],
"lowerBound": e.data[7],
"dimension": e.data[8]
};
var pso = new ParticleSwarmOptimization(parameters);
pso.solve();
};
function Particle(position, fitness, velocity) {
Solution.call(this, position, fitness);
this.velocity = velocity;
//set particle's best known position to its initial position
this.bestPosition = position.slice(0);
this.bestFitness = fitness;
}
;
Particle.prototype = Object.create(Solution.prototype);
Particle.prototype.constructor = Particle;