source: cpp/frams/genetics/fF/oper_fF.h @ 669

Last change on this file since 669 was 669, checked in by Maciej Komosinski, 7 years ago

As default foraminifera initial chamber radius in Framsticks units became 0.1, the simplest fF genotype now uses it

  • Property svn:eol-style set to native
File size: 692 bytes
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2017  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#ifndef _GENOOPER_FF_H_
6#define _GENOOPER_FF_H_
7
8#include "../oper_fx.h"
9
10
11class GenoOper_fF : public GenoOperators
12{
13public:
14        GenoOper_fF();
15        int checkValidity(const char *, const char *genoname);
16        int validate(char *&, const char *genoname);
17        int mutate(char *&g, float& chg, int &method);
18        int crossOver(char *&g1, char *&g2, float& chg1, float& chg2);
19        uint32_t style(const char *g, int pos);
20        const char* getSimplest() { return "6, 0.1, 0.1, 0.1, 1.05, 1.05, 1.05, 0, 0, 0"; }
21
22        double xover_proportion;
23};
24
25#endif
26
Note: See TracBrowser for help on using the repository browser.