Ignore:
Timestamp:
05/04/23 01:45:37 (13 months ago)
Author:
Maciej Komosinski
Message:

Simplify sequences of modifier genes, cancelling out antagonistic ones and limiting the number of identical genes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/f4/f4_general.h

    r1232 r1234  
    471471 * This is an internal function; for regular cases, use f4_process().
    472472 * @param genot the string with the entire genotype
     473 * @param genot_len length of genot (precomputed for efficiency)
    473474 * @param pos_inout the current position of processing in string (advanced by the function)
    474475 * @param parent current parent of the analysed branch of the genotype
    475476 * @return 0 if processing was successful, otherwise returns the position of an error in the genotype
    476477 */
    477 int f4_processRecur(const char *genot, int &pos_inout, f4_Node *parent);
     478int f4_processRecur(const char *genot, const int genot_len, int &pos_inout, f4_Node *parent);
    478479
    479480/**
Note: See TracChangeset for help on using the changeset viewer.