- Timestamp:
- 12/11/18 10:16:56 (6 years ago)
- Location:
- trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/OpCodes.cs
r16356 r16360 86 86 public const byte BinaryFactorVariable = 47; 87 87 public const byte Absolute = 48; 88 public const byte Analytic alQuotient = 49;88 public const byte AnalyticQuotient = 49; 89 89 public const byte Cube = 50; 90 90 public const byte CubeRoot = 51; … … 141 141 { typeof(BinaryFactorVariable), OpCodes.BinaryFactorVariable }, 142 142 { typeof(Absolute), OpCodes.Absolute }, 143 { typeof(Analytic alQuotient), OpCodes.AnalyticalQuotient },143 { typeof(AnalyticQuotient), OpCodes.AnalyticQuotient }, 144 144 { typeof(Cube), OpCodes.Cube }, 145 145 { typeof(CubeRoot), OpCodes.CubeRoot } -
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionCompiledTreeInterpreter.cs
r16356 r16360 507 507 result); 508 508 } 509 case OpCodes.Analytic alQuotient: {509 case OpCodes.AnalyticQuotient: { 510 510 var x1 = MakeExpr(node.GetSubtree(0), variableIndices, row, columns); 511 511 var x2 = MakeExpr(node.GetSubtree(1), variableIndices, row, columns); -
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeBatchInterpreter.cs
r16356 r16360 166 166 } 167 167 168 case OpCodes.Analytic alQuotient: {168 case OpCodes.AnalyticQuotient: { 169 169 Load(instr.buf, code[c].buf); 170 170 AnalyticQuotient(instr.buf, code[c + 1].buf); -
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeILEmittingInterpreter.cs
r16356 r16360 409 409 return; 410 410 } 411 case OpCodes.Analytic alQuotient: {411 case OpCodes.AnalyticQuotient: { 412 412 CompileInstructions(il, state, ds); // x1 413 413 CompileInstructions(il, state, ds); // x2 -
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeInterpreter.cs
r16356 r16360 351 351 } 352 352 353 case OpCodes.Analytic alQuotient: {353 case OpCodes.AnalyticQuotient: { 354 354 var x1 = Evaluate(dataset, ref row, state); 355 355 var x2 = Evaluate(dataset, ref row, state); -
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeLinearInterpreter.cs
r16356 r16360 215 215 if (instr.nArguments == 1) p = 1.0 / p; 216 216 instr.value = p; 217 } else if (instr.opCode == OpCodes.Analytic alQuotient) {217 } else if (instr.opCode == OpCodes.AnalyticQuotient) { 218 218 var x1 = code[instr.childIndex].value; 219 219 var x2 = code[instr.childIndex + 1].value;
Note: See TracChangeset
for help on using the changeset viewer.