Changeset 18133 for branches/3136_Structural_GP/HeuristicLab.ExtLibs
- Timestamp:
- 12/15/21 14:47:36 (3 years ago)
- Location:
- branches/3136_Structural_GP/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3136_Structural_GP/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/instruction.h
r16701 r18133 28 28 Cube = 50, 29 29 CubeRoot = 51, 30 Tanh = 52 30 Tanh = 52, 31 SubFunction = 53 31 32 }; 32 33 -
branches/3136_Structural_GP/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/interpreter.h
r16905 r18133 138 138 break; 139 139 } 140 case OpCodes::SubFunction: 141 { 142 in.value = code[in.childIndex].value; 143 break; 144 } 140 145 default: in.value = NAN; 141 146 } … … 291 296 break; 292 297 } 298 case OpCodes::SubFunction: 299 { 300 load(in.buf, code[in.childIndex].buf); 301 break; 302 } 303 293 304 default: load(in.buf, NAN); 294 305 } 295 306 } 296 307 }
Note: See TracChangeset
for help on using the changeset viewer.