Last change
on this file since 787 was
780,
checked in by Maciej Komosinski, 7 years ago
|
Added sources for genetic encodings fB, fH, fL
|
File size:
368 bytes
|
Line | |
---|
1 | #ifndef _FL_CONV_ |
---|
2 | #define _FL_CONV_ |
---|
3 | |
---|
4 | #include <frams/genetics/genoconv.h> |
---|
5 | |
---|
6 | class GenoConv_fL0 : public GenoConverter |
---|
7 | { |
---|
8 | public: |
---|
9 | GenoConv_fL0() : GenoConverter() |
---|
10 | { |
---|
11 | name = "L-System encoding"; |
---|
12 | |
---|
13 | in_format = 'L'; |
---|
14 | out_format = '0'; |
---|
15 | mapsupport = 1; |
---|
16 | } |
---|
17 | SString convert(SString &i, MultiMap *map, bool using_checkpoints); |
---|
18 | ~GenoConv_fL0() {} |
---|
19 | }; |
---|
20 | |
---|
21 | #endif // _FL_CONV_ |
---|
Note: See
TracBrowser
for help on using the repository browser.