- Timestamp:
- 04/07/23 18:30:41 (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_conv.cpp
r831 r1212 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 17Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2023 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 148 148 149 149 150 /// updated by Mac ko to follow new SDK standards (no more neuroitems)150 /// updated by MacKo to follow new SDK standards (no more neuroitems) 151 151 int f4_Model::buildModelRec(f4_Cell *C) 152 152 { … … 272 272 C->neuro_refno = partidx; 273 273 } 274 else // attached to Joint 274 else // attached to Joint, assume there are only three possibilities of getPreferredLocation() 275 275 { 276 276 jointno = C->dadlink->joint_refno; 277 sprintf(tmpLine, " n:j=%d,d=\"%s\"", jointno, nclass);277 sprintf(tmpLine, "j=%d,d=\"%s\"", jointno, nclass); 278 278 partidx = addFromString(NeuronType, tmpLine, &range); 279 279 if (partidx < 0) return -32;
Note: See TracChangeset
for help on using the changeset viewer.