Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/13/19 19:05:35 (5 years ago)
Author:
gkronber
Message:

#2994: more test cases to understand specific problems when optimizing with constraints

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs

    r17209 r17217  
    247247            break;
    248248          }
     249        case OpCodes.Cube: {
     250            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
     251            result = Interval.Cube(argumentInterval);
     252            break;
     253          }
    249254        case OpCodes.Root: {
    250255            result = Evaluate(instructions, ref instructionCounter, nodeIntervals);
     
    258263            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
    259264            result = Interval.SquareRoot(argumentInterval);
     265            break;
     266          }
     267        case OpCodes.CubeRoot: {
     268            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
     269            result = Interval.CubicRoot(argumentInterval);
    260270            break;
    261271          }
Note: See TracChangeset for help on using the changeset viewer.