source: cpp/frams/genetics/fL/fL_conv.h

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

A more complete implementation of fB, fH, fL

File size: 539 bytes
Line 
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 _FL_CONV_
6#define _FL_CONV_
7
8#include <frams/genetics/genoconv.h>
9
10class GenoConv_fL0 : public GenoConverter
11{
12public:
13        GenoConv_fL0() : GenoConverter()
14        {
15                name = "L-System encoding";
16
17                in_format = 'L';
18                out_format = '0';
19                mapsupport = 1;
20        }
21        SString convert(SString &i, MultiMap *map, bool using_checkpoints);
22        ~GenoConv_fL0() {}
23};
24
25#endif // _FL_CONV_
Note: See TracBrowser for help on using the repository browser.