Changeset 495 for cpp/frams/model/model.h
- Timestamp:
- 04/11/16 02:07:03 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/model.h
r408 r495 124 124 125 125 void updateNeuroRefno(); // set Neuro::refno for all neurons 126 SString nameForErrors() const; 126 127 int internalcheck(int final); 127 128 … … 275 276 or negative value. reference number can be used to access 276 277 the item using getPart(int), getJoint(int) and getNeuroItem(int) methods. 278 @param line_num optional line number used in error messages 277 279 @param srcrange source genotype range which will be mapped to this element 278 280 */ 279 int singleStepBuild(const SString &singleline,const MultiRange* srcrange=0); 281 int singleStepBuild(const SString &singleline,int line_num,const MultiRange* srcrange=NULL); 282 /** Execute single line of <B>f0</B> genotype - compatiblity variant */ 283 int singleStepBuild(const SString &singleline,const MultiRange* srcrange=NULL); 284 /** Execute single line of <B>f0</B> genotype - low level variant, used by Model::build(), error messages returned as string instead of calling logger */ 285 int singleStepBuildNoLog(const SString &singleline,SString& error_message,const MultiRange* srcrange=0); 280 286 281 287 /// separate build stages (for future use)
Note: See TracChangeset
for help on using the changeset viewer.