Changeset 1239 for cpp/frams/genetics/f4/f4_general.h
- Timestamp:
- 05/08/23 02:10:57 (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.h
r1237 r1239 190 190 f4_Node *genot; ///<genotype tree 191 191 f4_Node *gcur; ///<current genotype execution pointer 192 bool active; ///<determines whether development is still active; even if false, the cell may "yield" - may be halted (but still having its onStep() called) due to neural connections waiting for other cells to potentially develop neurons192 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 194 int recProcessedFlag; ///<used during recursive traverse … … 329 329 f4_Cell *C[F4_MAX_CELLS]; ///<Array of all cells of an organism 330 330 int cell_count; ///<Number of cells in an organism 331 bool development_stagnation; ///< simulate() and oneStep() use it to force f4_Cell's waiting to develop their neural connections to progress, indicating that all cells have not had progress during the last step 331 332 332 333 private:
Note: See TracChangeset
for help on using the changeset viewer.