Changeset 1249 for cpp/frams/genetics/f4/f4_general.h
- Timestamp:
- 05/21/23 23:16:51 (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.h
r1239 r1249 181 181 * Adjusts properties of stick objects. 182 182 */ 183 void adjustRec ();184 185 int nr; ///<number of cell (seems to be used only in oldf1 converter for neuron connections)183 void adjustRecur(); 184 185 int nr; ///<number of cell (seems to be used only in the approximate f1 converter for neuron connections) 186 186 int type; ///<type 187 187 f4_Cell *dadlink; ///<pointer to cell parent … … 192 192 f4_Node *old_gcur; ///<used externally by f4_Cells::oneStep() to track changes of gcur, i.e., to detect progress in cell development 193 193 repeat_stack repeat; ///<stack holding repetition nodes and counters 194 int recProcessedFlag;///<used during recursive traverse194 bool recurProcessedFlag; ///<used during recursive traverse 195 195 MultiRange genoRange; ///<remember the genotype codes affecting this cell so far 196 196 197 197 GeneProps P; ///<properties 198 198 int anglepos; ///<number of position within dad's children (,) 199 int childcount; ///<number of children199 int stickchildcount; ///<number of children (sticks only) 200 200 int commacount; ///<number of postitions at lastend (>=childcount) 201 201 double rolling; ///<rolling angle ('R') (around x) … … 203 203 double zrot; ///<horizontal rotation angle due to branching (around z) 204 204 205 double mz; ///<freedom in z206 205 int p2_refno; ///<the number of the last end part object, used in f0 207 206 int joint_refno; ///<the number of the joint object, used in f0 208 207 int neuro_refno; ///<the number of the neuro object, used in f0 209 208 210 double inertia; ///<inertia of neuron 211 double force; ///<force of neuron 212 double sigmo; ///<sigmoid of neuron 209 double inertia; ///<inertia of neuron N 210 double force; ///<force of neuron N 211 double sigmo; ///<sigmoid of neuron N 213 212 f4_CellConn *conns[F4_MAX_CELL_INPUTS]; ///<array of neuron connections 214 213 int conns_count; ///<number of connections
Note: See TracChangeset
for help on using the changeset viewer.