Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16297


Ignore:
Timestamp:
11/14/18 12:12:39 (5 years ago)
Author:
bburlacu
Message:

#2958: Very minor refactor.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeBatchInterpreter.cs

    r16296 r16297  
    1111
    1212using static HeuristicLab.Problems.DataAnalysis.Symbolic.BatchOperations;
    13 //using static HeuristicLab.Problems.DataAnalysis.Symbolic.BatchOperationsVector;
    1413
    1514namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
     
    204203      var code = new BatchInstruction[root.GetLength()];
    205204      if (root.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
    206       code[0] = new BatchInstruction { narg = (ushort)root.SubtreeCount, opcode = opCodeMapper(root) };
    207205      int c = 1, i = 0;
    208206      foreach (var node in root.IterateNodesBreadth()) {
Note: See TracChangeset for help on using the changeset viewer.