Last change
on this file since 12147 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
855 bytes
|
Line | |
---|
1 | # Copyright 2010 by Sean Luke and George Mason University |
---|
2 | # Licensed under the Academic Free License version 3.0 |
---|
3 | # See the file "LICENSE" for more information |
---|
4 | |
---|
5 | parent.0 = bbob.params |
---|
6 | |
---|
7 | breed = ec.de.DEBreeder |
---|
8 | # Other breed choices: ec.de.Best1BinDEBreeder, ec.de.Rand1EitherOrDEBreeder, |
---|
9 | # ec.de.Rand1ExpDEBreeder |
---|
10 | |
---|
11 | |
---|
12 | # Differential Evolution requires a special statistics object |
---|
13 | # (ec.de.DEStatistics) to deal with certain issues that arise in parent/child |
---|
14 | # competition. See the DEStatistics documentation for more discussion. The |
---|
15 | # way we use the object is as the primary statistics object, and then we hang |
---|
16 | # SimpleStatistics as a subsidiary statistics object off of it like so: |
---|
17 | stat = ec.de.DEStatistics |
---|
18 | stat.num-children = 1 |
---|
19 | stat.child.0 = ec.simple.SimpleStatistics |
---|
20 | stat.child.0.file = $out.stat |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.