- Timestamp:
- 09/15/11 16:13:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisExpressionTreeILEmittingInterpreter.cs
r6755 r6770 473 473 } 474 474 case OpCodes.Call: { 475 throw new Not ImplementedException();475 throw new NotSupportedException("Automatically defined functions are not supported by the SymbolicDataAnalysisTreeILEmittingInterpreter. Either turn of ADFs or change the interpeter."); 476 476 } 477 477 case OpCodes.Arg: { 478 throw new Not ImplementedException();478 throw new NotSupportedException("Automatically defined functions are not supported by the SymbolicDataAnalysisTreeILEmittingInterpreter. Either turn of ADFs or change the interpeter."); 479 479 } 480 480 case OpCodes.Variable: { … … 483 483 il.Emit(System.Reflection.Emit.OpCodes.Ldc_I4, (int)currentInstr.iArg0); // load correct column of the current variable 484 484 il.Emit(System.Reflection.Emit.OpCodes.Ldelem_Ref); 485 il.Emit(System.Reflection.Emit.OpCodes.Ldc_I4, 0); // sampleOffset 485 il.Emit(System.Reflection.Emit.OpCodes.Ldarg_0); // sampleIndex 486 il.Emit(System.Reflection.Emit.OpCodes.Call, listGetValue); 487 il.Emit(System.Reflection.Emit.OpCodes.Ldc_R8, varNode.Weight); // load weight 488 il.Emit(System.Reflection.Emit.OpCodes.Mul); 489 return; 490 } 491 case OpCodes.LagVariable: { 492 LaggedVariableTreeNode varNode = (LaggedVariableTreeNode)currentInstr.dynamicNode; 493 il.Emit(System.Reflection.Emit.OpCodes.Ldarg_1); // load columns array 494 il.Emit(System.Reflection.Emit.OpCodes.Ldc_I4, (int)currentInstr.iArg0); // load correct column of the current variable 495 il.Emit(System.Reflection.Emit.OpCodes.Ldelem_Ref); 496 il.Emit(System.Reflection.Emit.OpCodes.Ldc_I4, varNode.Lag); // lag 486 497 il.Emit(System.Reflection.Emit.OpCodes.Ldarg_0); // sampleIndex 487 498 il.Emit(System.Reflection.Emit.OpCodes.Add); // row = sampleIndex + sampleOffset … … 490 501 il.Emit(System.Reflection.Emit.OpCodes.Mul); 491 502 return; 492 }493 case OpCodes.LagVariable: {494 throw new NotImplementedException();495 503 } 496 504 case OpCodes.Constant: {
Note: See TracChangeset
for help on using the changeset viewer.