Changeset 18220 for trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src
- Timestamp:
- 02/24/22 20:33:45 (3 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
/branches/3136_Structural_GP/HeuristicLab.ExtLibs (added) merged: 18133,18161,18216
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/instruction.h
r18160 r18220 29 29 CubeRoot = 51, 30 30 Tanh = 52, 31 SubFunction = 53, 31 32 Constant = 54 32 33 }; -
trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/interpreter.h
r18160 r18220 139 139 break; 140 140 } 141 case OpCodes::SubFunction: 142 { 143 in.value = code[in.childIndex].value; 144 break; 145 } 141 146 default: in.value = NAN; 142 147 } … … 293 298 break; 294 299 } 300 case OpCodes::SubFunction: 301 { 302 load(in.buf, code[in.childIndex].buf); 303 break; 304 } 305 295 306 default: load(in.buf, NAN); 296 307 } 297 308 } 298 309 }
Note: See TracChangeset
for help on using the changeset viewer.