Changeset 16297
- Timestamp:
- 11/14/18 12:12:39 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeBatchInterpreter.cs
r16296 r16297 11 11 12 12 using static HeuristicLab.Problems.DataAnalysis.Symbolic.BatchOperations; 13 //using static HeuristicLab.Problems.DataAnalysis.Symbolic.BatchOperationsVector;14 13 15 14 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { … … 204 203 var code = new BatchInstruction[root.GetLength()]; 205 204 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) };207 205 int c = 1, i = 0; 208 206 foreach (var node in root.IterateNodesBreadth()) {
Note: See TracChangeset
for help on using the changeset viewer.