Changeset 1228 for cpp/frams/genetics/f4/f4_general.h
- Timestamp:
- 04/28/23 23:44:31 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.h
r1227 r1228 51 51 * @return 1 if end of string was reached, or position of found character in sequence 52 52 */ 53 int scan rec(const char* s, unsignedint slen, char stopchar);53 int scanRecur(const char* s, int slen, char stopchar); 54 54 55 55 … … 475 475 /** 476 476 * The main function for converting a string of f4 encoding to a tree structure. Prepares 477 * f4_Node root of tree and runs f4_process recfunction for it.477 * f4_Node root of tree and runs f4_processRecur function for it. 478 478 * @param geno the string representing an f4 genotype 479 479 * @return a pointer to the f4_Node object representing the f4 tree root 480 480 */ 481 f4_Node* f4_processtree(const char *geno);481 //f4_Node* f4_processTree(const char *geno); 482 482 483 483 /** … … 485 485 * a tree of f4_Node objects. This method extracts each potentially functional element 486 486 * of a genotype string to a separate f4_Nodes. When the branching character '<' occurs, 487 * f4_process recis deployed for the latest f4_Node element. This method does not487 * f4_processRecur is deployed for the latest f4_Node element. This method does not 488 488 * analyse the genotype semantically, it only checks if the syntax is proper. The only 489 489 * semantic aspect is neuron class name extraction, where the GenoOperators … … 494 494 * @return 0 if processing was successful, otherwise returns the position of an error in the genotype 495 495 */ 496 int f4_process rec(const char *genot, unsigned pos0, f4_Node *parent);496 int f4_processRecur(const char *genot, unsigned pos0, f4_Node *parent); 497 497 498 498 /**
Note: See TracChangeset
for help on using the changeset viewer.