- Timestamp:
- 08/13/19 19:05:35 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs
r17209 r17217 247 247 break; 248 248 } 249 case OpCodes.Cube: { 250 var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals); 251 result = Interval.Cube(argumentInterval); 252 break; 253 } 249 254 case OpCodes.Root: { 250 255 result = Evaluate(instructions, ref instructionCounter, nodeIntervals); … … 258 263 var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals); 259 264 result = Interval.SquareRoot(argumentInterval); 265 break; 266 } 267 case OpCodes.CubeRoot: { 268 var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals); 269 result = Interval.CubicRoot(argumentInterval); 260 270 break; 261 271 }
Note: See TracChangeset
for help on using the changeset viewer.