source: cpp/frams/genetics/fL/fL_oper.h @ 780

Last change on this file since 780 was 780, checked in by Maciej Komosinski, 6 years ago

Added sources for genetic encodings fB, fH, fL

File size: 502 bytes
Line 
1#ifndef _FL_OPER_
2#define _FL_OPER_
3
4#include "../genooperators.h"
5
6class Geno_fL : public GenoOperators
7{
8public:
9        Geno_fL();
10
11        //      int checkValidity(const char *geno, const char *genoname);
12
13        //      int validate(char *&geno, const char *genoname);
14
15        //      int mutate(char *&geno, float& chg, int &method);
16
17        //      int crossOver(char *&g1, char *&g2, float& chg1, float& chg2);
18
19        //      virtual const char* getSimplest() { return "5\naaazz"; }
20
21        //      uint32_t style(const char *geno, int pos);
22};
23
24#endif // _FL_OPER_
Note: See TracBrowser for help on using the repository browser.