source: cpp/frams/genetics/fH/fH_conv.h @ 797

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

A more complete implementation of fB, fH, fL

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