Ignore:
Timestamp:
09/09/23 15:10:49 (8 months ago)
Author:
Maciej Komosinski
Message:

fH, fB, fL: improved default parameter values, syntax coloring and code logic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/genooperators.h

    r1254 r1273  
    164164        virtual const char* getSimplest() { return NULL; }
    165165
    166         /**You may want to have your genotype colored. This method provides desired character styles for genes.
     166        /**Provides color styles for individual characters of the genotype. For efficiency,
     167        this function may be approximate and do not perform the full, proper analysis of the syntax.
    167168        \param geno genotype
    168169        \param pos 0-based char offset
    169         \retval number-encoded visual style (and validity) of the genotype char at \a geno[pos].
    170         Assume white background.
     170        \retval number-encoded visual style (and validity) of the genotype char at \a geno[pos]. Assume white background.
    171171        \sa GENSTYLE_* macros, like GENSTYLE_BOLD*/
    172172        virtual uint32_t style(const char *geno, int pos) { return GENSTYLE_RGBS(0, 0, 0, GENSTYLE_NONE); }
Note: See TracChangeset for help on using the changeset viewer.