Changeset 534 for cpp/frams/genetics/geno.h
- Timestamp:
- 07/20/16 01:17:14 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/geno.h
r530 r534 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 5Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2016 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 85 85 86 86 /// return string representation, with format comment at the beginning 87 SString getGene AndFormat(void) const;87 SString getGenesAndFormat(void) const; 88 88 89 89 void setString(const SString& genewithcomments); 90 90 91 /** @param genformat=-1 -> take from genstring comment (like the constructor) else specify the valid format in genformat and pure gene in genstring*/92 void setGene AndFormat(const SString& genstring, char genformat=-1);93 /** g must be pure gene , without format. for the standard behavior use setGeneAndFormat() */94 void setGene Only(const SString& g);95 SString getGene (void) const;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); 93 /** g must be pure genes, without format. For the standard behavior use setGenesAndFormat() */ 94 void setGenesAssumingSameFormat(const SString& g); 95 SString getGenes(void) const; 96 96 97 97 SString getName(void) const;
Note: See TracChangeset
for help on using the changeset viewer.