Changeset 1234 for cpp/frams/genetics/f4/f4_general.h
- Timestamp:
- 05/04/23 01:45:37 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.h
r1232 r1234 471 471 * This is an internal function; for regular cases, use f4_process(). 472 472 * @param genot the string with the entire genotype 473 * @param genot_len length of genot (precomputed for efficiency) 473 474 * @param pos_inout the current position of processing in string (advanced by the function) 474 475 * @param parent current parent of the analysed branch of the genotype 475 476 * @return 0 if processing was successful, otherwise returns the position of an error in the genotype 476 477 */ 477 int f4_processRecur(const char *genot, int &pos_inout, f4_Node *parent);478 int f4_processRecur(const char *genot, const int genot_len, int &pos_inout, f4_Node *parent); 478 479 479 480 /**
Note: See TracChangeset
for help on using the changeset viewer.