Changeset 1248 for cpp/frams/genetics
- Timestamp:
- 05/21/23 23:03:45 (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/geneprops.cpp
r1246 r1248 10 10 GeneProps::GeneProps() 11 11 { 12 Part_MinMaxDef default_part = Model::getDefPart(); 13 Joint default_joint = Model::getDefJoint(); 14 12 15 length = 1.0; 13 16 weight = 1.0; 14 friction = 0.4;17 friction = default_part.friction; 15 18 curvedness = 0.0; 16 19 twist = 0.0; 17 20 energy = 1.0; 18 21 19 muscle_power = 0.25; // "biological" property 20 assimilation = 0.25; // "biological" property 21 stamina = 0.25; // "biological" property 22 ingestion = 0.25; // "biological" property 23 24 muscle_bend_range = 1.0; 22 // before 2023-05, the four fields below were aggregated and normalized using normalizeBiol4(), but this normalization only worked for f1 and f4 - other genetic encodings do not perform such normalization. If at all, this should be handled by the expdef depending on the goal of the experiment (e.g., to encourage specialization). 23 muscle_power = 0.25; // "biological" property, same as findNeuroClass("BendMuscle or RotMuscle")->paraminterface->getDoubleById("power") 24 assimilation = default_part.assim; // "biological" property 25 stamina = default_joint.stamina; // "biological" property 26 ingestion = default_part.ingest; // "biological" property 27 28 muscle_bend_range = 1.0; // same as findNeuroClass("BendMuscle")->paraminterface->getDoubleById("range") 25 29 muscle_reset_range = true; 26 30 27 cred = 0.5; 28 cgreen = 0.5; 29 cblue = 0.5; 30 31 normalizeBiol4(); 31 cred = default_part.vcolor.x; 32 cgreen = default_part.vcolor.y; 33 cblue = default_part.vcolor.z; 32 34 } 33 35
Note: See TracChangeset
for help on using the changeset viewer.