Changeset 16334
- Timestamp:
- 11/30/18 09:51:30 (6 years ago)
- Location:
- trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/interpreter.h
r16274 r16334 100 100 break; 101 101 } 102 case OpCodes::Square: 103 { 104 in.value = std::pow(code[in.childIndex].value, 2.); 105 break; 106 } 102 107 case OpCodes::Sqrt: 103 108 { … … 225 230 break; 226 231 } 232 case OpCodes::Sqrt: 233 { 234 sqrt(in.buf, code[in.childIndex].buf); 235 break; 236 } 227 237 } 228 238 }
Note: See TracChangeset
for help on using the changeset viewer.