source: cpp/frams/genetics/fH/fH_conv.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: 399 bytes
Line 
1#ifndef _FH_CONV_H_
2#define _FH_CONV_H_
3
4#include <frams/genetics/genoconv.h>
5#include "fH_general.h"
6
7class GenoConv_fH0 : public GenoConverter
8{
9public:
10        GenoConv_fH0() :GenoConverter()
11        {
12                name = "Similarity encoding";
13
14                in_format = 'H';
15                out_format = '0';
16                mapsupport = 1;
17        }
18        SString convert(SString &i, MultiMap *map, bool using_checkpoints);
19        ~GenoConv_fH0() {};
20};
21
22#endif //_FH_CONV_H_
Note: See TracBrowser for help on using the repository browser.