Ignore:
Timestamp:
11/27/20 20:54:50 (3 years ago)
Author:
Maciej Komosinski
Message:
  • fS: comma as an intuitive separator in genotype instead of weird symbols ;'
  • other minor refactorizations
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/fS/fS_general.h

    r1030 r1032  
    1919#define BRANCH_START '('
    2020#define BRANCH_END ')'
    21 #define BRANCH_SEPARATOR '^'
     21#define BRANCH_SEPARATOR ','
    2222#define PARAM_START '{'
    2323#define PARAM_END '}'
    24 const char PARAM_SEPARATOR = ';';
     24const char PARAM_SEPARATOR = ',';
    2525const char PARAM_KEY_VALUE_SEPARATOR = '=';
    2626#define NEURON_START '['
    2727const char NEURON_END = ']';
    2828const char NEURON_SEPARATOR = ';';
    29 const SString NEURON_INTERNAL_SEPARATOR("'");
     29const SString NEURON_INTERNAL_SEPARATOR(",");
    3030#define NEURON_I_W_SEPARATOR ':'
    3131//@}
     
    274274        Part *part;     /// A part object built from node. Used in building the Model
    275275        int partCodeLen; /// The length of substring that directly describes the corresponding part
     276
    276277        static std::map<string, double> minValues;      /// Min parameter values
    277278        static std::map<string, double> defaultValues;  /// Default parameter values
Note: See TracChangeset for help on using the changeset viewer.