Simplify configuration.
Remove support for (outdated) <strstream>, require <sstream>. Require uint32_t for now, defined in stdint.h according to C99. Some general cleanup and more documentation.
This commit is contained in:
parent
abe55a641a
commit
cf2a57dd88
46 changed files with 482 additions and 886 deletions
|
|
@ -28,12 +28,13 @@
|
|||
#define eoSequential_h
|
||||
|
||||
/** Contains the following classes:
|
||||
* - eoSequentialSelect, returns all individuals one by one,
|
||||
* - eoSequentialSelect, returns all individuals one by one,
|
||||
* either sorted or shuffled
|
||||
* - eoEliteSequentialSelect, returns all indivisuals one by one
|
||||
* starting with best, continuing shuffled (see G3 engine)
|
||||
*/
|
||||
|
||||
#include <utils/eoData.h>
|
||||
#include <utils/eoRNG.h>
|
||||
#include <eoSelectOne.h>
|
||||
|
||||
|
|
@ -129,7 +130,7 @@ template <class EOT> class eoEliteSequentialSelect: public eoSelectOne<EOT>
|
|||
const EOT *ptmp = eoPters[0];
|
||||
eoPters[0]=best;
|
||||
eoPters[ibest] = ptmp;
|
||||
// exit after setting current
|
||||
// exit after setting current
|
||||
current=0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue