Changeset 16346
- Timestamp:
- 12/07/18 15:33:54 (6 years ago)
- Location:
- branches/2915-AbsoluteSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2915-AbsoluteSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/BatchOperations.cs
r16345 r16346 102 102 public static void Absolute(double[] a, double[] b) { 103 103 for (int i = 0; i < BATCHSIZE; ++i) 104 a[i] = Math.Abs( a[i]);104 a[i] = Math.Abs(b[i]); 105 105 } 106 106 -
branches/2915-AbsoluteSymbol/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeBatchInterpreter.cs
r16345 r16346 159 159 break; 160 160 } 161 161 162 case OpCodes.Absolute: { 162 163 Absolute(instr.buf, code[c].buf); 163 164 break; 164 165 } 166 165 167 case OpCodes.AnalyticalQuotient: { 166 168 Load(instr.buf, code[c].buf); 167 AnalyticQuotient(instr.buf, code[c ].buf);169 AnalyticQuotient(instr.buf, code[c + 1].buf); 168 170 break; 169 171 }
Note: See TracChangeset
for help on using the changeset viewer.