Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/11 17:24:39 (12 years ago)
Author:
gkronber
Message:

#1480 added a message for the NotSupportedException thrown in the SymbolicDataAnalysisExpressionTreeILEmittingInterpreter stating which symbolic is not supported.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisExpressionTreeILEmittingInterpreter.cs

    r6849 r7077  
    584584        //to determine the relative amounts of the true and false branch see http://en.wikipedia.org/wiki/Logistic_function
    585585        case OpCodes.VariableCondition: {
    586             throw new NotImplementedException();
    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");
    589589      }
    590590    }
Note: See TracChangeset for help on using the changeset viewer.