Changeset 247 for cpp/frams/genetics/genman.h
- Timestamp:
- 11/07/14 17:51:01 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/genman.h
r197 r247 46 46 Geno CrossOver(const Geno&, const Geno&); //returns xover genotype ("child") or empty if errors 47 47 float Similarity(const Geno&, const Geno&); //returns GENOPER_NOOPER or normalized similarity (1: identical, 0: different) 48 u nsigned longStyle(const char* g, int pos); //returns Style (and validity) of a genotype char.49 void GetFullStyle(const char *g, u nsigned long*styletab); //optimized. Fills styletab with styles for all genotype chars. sizeof(*styletab) must be at least strlen(g).48 uint32_t Style(const char* g, int pos); //returns Style (and validity) of a genotype char. 49 void GetFullStyle(const char *g, uint32_t *styletab); //optimized. Fills styletab with styles for all genotype chars. sizeof(*styletab) must be at least strlen(g). 50 50 SString HTMLize(const char *g); //returns colored genotype in HTML. 51 51 SString HTMLizeShort(const char *g); //returns colored genotype (abbreviated if needed) in HTML. … … 83 83 #undef STATRICKCLASS 84 84 void clearStats(); 85 static void onDelGen(void*, long);85 static void onDelGen(void*, intptr_t); 86 86 }; 87 87
Note: See TracChangeset
for help on using the changeset viewer.