Changeset 732 for cpp/frams/genetics/geno.h
- Timestamp:
- 02/15/18 00:42:07 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified cpp/frams/genetics/geno.h ¶
r534 r732 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 6Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2018 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 90 90 91 91 /** @param genformat=-1 -> detect genotype format from genstring comment (like the constructor does), else specify the valid format in genformat and pure genes in genstring. */ 92 void setGenesAndFormat(const SString& genstring, char genformat =-1);92 void setGenesAndFormat(const SString& genstring, char genformat = -1); 93 93 /** g must be pure genes, without format. For the standard behavior use setGenesAndFormat() */ 94 94 void setGenesAssumingSameFormat(const SString& g); … … 107 107 /// make converted version of the genotype. 108 108 /// @param converter_missing optional output parameter (ignored when NULL). Receives true if the conversion fails because of the lack of appropriate converter(s) (the returned Geno is always invalid in this case). Receives false if the genotype was converted by a converter or a converter chain (the returned Geno can be valid or invalid, depending on the converter's decision). 109 Geno getConverted(char otherformat, MultiMap *m = 0, bool *converter_missing = NULL);109 Geno getConverted(char otherformat, MultiMap *m = 0, bool using_checkpoints = false, bool *converter_missing = NULL); 110 110 111 111 /// @return -1 = before first char in the string
Note: See TracChangeset
for help on using the changeset viewer.