-
Notifications
You must be signed in to change notification settings - Fork 60
/
CHANGELOG.txt
51 lines (49 loc) · 2.32 KB
/
CHANGELOG.txt
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
-------------------------------------------------------------------------------
-- All programming languages
-------------------------------------------------------------------------------
-- 4 April 2016, 21:00PM
Increased accuracy for the fitness values of shubert, and six_hump_camel_back.
Many thanks to Francesco Fracchia for noting this to us
-------------------------------------------------------------------------------
-- C++ version
-------------------------------------------------------------------------------
11 March 2013, 9:31PM
Correct number of global optima for function 18 from 6 to 8. Thanks to Catalin
Stoean
-cec2013.cpp line 68: nopt_[17] = 6; nopt_[18] = 8; nopt_[19] = 8;
-------------------------
4 March 2013, 12:43PM
We just changed the line 40 in cec2013.h:
double nopt_[20]; with int nopt_[20];
-------------------------------------------------------------------------------
-- Java source code
-------------------------------------------------------------------------------
11 March 2013, 9:31PM
Correct number of global optima for function 18 from 6 to 8. Thanks to Catalin
Stoean
-CEC2013.java, lines 72-74,
private static int [] nopt_ = new int[] {
2, 5, 1, 4, 2, 18, 36, 81, 216, 12,
6, 8, 6, 6, 8, 6, 8, 6, 8, 8};
-------------------------
7 March 2013, 10:00AM
Found a bug in CEC2013.java, fixed method howManyGlobalOptimaInPopulation
The bug was in the Map procedure used to sort the population by its fitness.
-------------------------------------------------------------------------------
-- MATLAB source code
-------------------------------------------------------------------------------
-- 4 April 2016, 21:00PM
Added get_dimension.m get_maxfes.m functions and updated the demo_suite.m script
-------------------------
-- 11 March 2013, 9:31PM
Correct number of global optima for function 18 from 6 to 8. Thanks to Catalin
Stoean
-get_no_goptima.m, line 10,
nopt = [2 5 1 4 2 18 36 81 216 12 6 8 6 6 8 6 8 6 8 8];
-------------------------------------------------------------------------------
-- python source code
-------------------------------------------------------------------------------
3 April 2016, 21:00PM
Initial implementation of the competition's infrastructure in python. Special
thanks to Eduardo Nobre Luis, and Fabricio Olivetti de Franca for providing us
a first implementation in python.