-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEvolutionStrategies_Sensor.js
63 lines (53 loc) · 2.05 KB
/
EvolutionStrategies_Sensor.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
"use strict";
importScripts('./EvolutionStrategies.js', './SensorDeploymentProblem.js');
function EvolutionStrategies_Sensor(parameters) {
EvolutionStrategies.call(this, parameters);
this.sensorDeploymentProblem = new SensorDeploymentProblem(parameters.numOfSensors, parameters.numOfPoints,
parameters.radius, parameters.width, parameters.height);
this.sensorDeploymentProblem.setPointsArray(parameters.initialPointsArray);
}
;
EvolutionStrategies_Sensor.prototype = Object.create(EvolutionStrategies.prototype);
EvolutionStrategies_Sensor.prototype.constructor = EvolutionStrategies;
EvolutionStrategies_Sensor.prototype.calculateObjValue = function (array) {
this.sensorDeploymentProblem.setSensorsArray(array);
return -1 * this.sensorDeploymentProblem.getCoverage();
};
EvolutionStrategies_Sensor.prototype.createRandomPosition = function(){
return this.sensorDeploymentProblem.generateRandomSensorsArray();
};
EvolutionStrategies_Sensor.prototype.createParent = function () {
var randomPos = this.sensorDeploymentProblem.generateRandomSensorsArray();
return new ESUncorrelatedSolution(randomPos, this.calculateObjValue(randomPos), this.sigma);
};
EvolutionStrategies_Sensor.prototype.checkBoundary = function (num, i) {
if (num < 0) {
return false;
}
if (i % 2 === 0 && num > this.sensorDeploymentProblem.getAreaWidth()) {
return false;
}
if (i % 2 === 1 && num > this.sensorDeploymentProblem.getAreaHeight()) {
return false;
}
return true;
};
onmessage = function (e) {
var parameters = {
"sigma": e.data[0],
"lambda": e.data[1],
"tau": e.data[2],
"maxFEs": e.data[3],
"upperBound": e.data[4],
"lowerBound": e.data[5],
"dimension": e.data[6],
"numOfSensors": e.data[7],
"numOfPoints": e.data[8],
"radius": e.data[9],
"width": e.data[10],
"height": e.data[11],
"initialPointsArray": e.data[12]
};
var es_s = new EvolutionStrategies_Sensor(parameters);
es_s.solve();
};