-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContinuousOptimizer.js
39 lines (31 loc) · 1.1 KB
/
ContinuousOptimizer.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
"use strict";
importScripts('./BenchmarkFunctions.js', './Solution.js');
function ContinuousOptimizer(parameters) {
this.NP = parameters.NP;
this.globalBest = null;
this.upperBound = parameters.upperBound;
this.lowerBound = parameters.lowerBound;
this.dimension = parameters.dimension;
this.maxFEs = parameters.maxFEs;
this.objFunc = parameters.objFunc;
}
;
ContinuousOptimizer.prototype.solve = function () {};
ContinuousOptimizer.prototype.calculateObjValue = function (array) {
return this.objFunc(array);
};
ContinuousOptimizer.prototype.fixBoundary = function (array) {
for (var i = 0; i < array.length; i++) {
if (array[i] > this.upperBound) {
array[i] = this.upperBound;
} else if (array[i] < this.lowerBound) {
array[i] = this.lowerBound;
}
}
return array;
};
ContinuousOptimizer.prototype.createInitialPopulation = function () {};
ContinuousOptimizer.prototype.createRandomPosition = function () {
var randPos = createRandomPosition(this.lowerBound, this.upperBound, this.dimension);
return randPos;
};