Changeset 7077 for trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisExpressionTreeILEmittingInterpreter.cs
- Timestamp:
- 11/25/11 17:24:39 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisExpressionTreeILEmittingInterpreter.cs
r6849 r7077 584 584 //to determine the relative amounts of the true and false branch see http://en.wikipedia.org/wiki/Logistic_function 585 585 case OpCodes.VariableCondition: { 586 throw new Not ImplementedException();587 } 588 default: throw new NotSupportedException( );586 throw new NotSupportedException("Interpretation of symbol " + currentInstr.dynamicNode.Symbol.Name + " is not supported by the SymbolicDataAnalysisTreeILEmittingInterpreter"); 587 } 588 default: throw new NotSupportedException("Interpretation of symbol " + currentInstr.dynamicNode.Symbol.Name + " is not supported by the SymbolicDataAnalysisTreeILEmittingInterpreter"); 589 589 } 590 590 }
Note: See TracChangeset
for help on using the changeset viewer.