Last change
on this file since 777 was
762,
checked in by Maciej Komosinski, 7 years ago
|
Default sample values for a 2D problem, not 1D; added documentation and a sample 2D fitness function; crossover better protected against different lengths of parent vectors
|
File size:
831 bytes
|
Rev | Line | |
---|
[747] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/
|
---|
| 2 | // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski.
|
---|
| 3 | // See LICENSE.txt for details.
|
---|
| 4 |
|
---|
| 5 | #ifndef _GENOOPER_Fn_H_
|
---|
| 6 | #define _GENOOPER_Fn_H_
|
---|
| 7 |
|
---|
| 8 | #include "../oper_fx.h"
|
---|
| 9 |
|
---|
| 10 |
|
---|
| 11 | class GenoOper_fn : public GenoOperators
|
---|
| 12 | {
|
---|
| 13 | public:
|
---|
| 14 | GenoOper_fn();
|
---|
| 15 | int checkValidity(const char *, const char *genoname);
|
---|
| 16 | int validate(char *&, const char *genoname);
|
---|
| 17 | int mutate(char *&g, float& chg, int &method);
|
---|
| 18 | int crossOver(char *&g1, char *&g2, float& chg1, float& chg2);
|
---|
| 19 | uint32_t style(const char *g, int pos);
|
---|
[762] | 20 | const char* getSimplest() { return "[0.0, 0.0]"; } //should actually correspond in length to vectors in mut_bound_low, mut_bound_high, mut_stddev
|
---|
[747] | 21 |
|
---|
| 22 | double xover_proportion;
|
---|
[752] | 23 | SString mut_bound_low, mut_bound_high, mut_stddev;
|
---|
[747] | 24 | };
|
---|
| 25 |
|
---|
| 26 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.