- Timestamp:
- 07/04/19 13:00:24 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk merged: 16241,16243-16244,16763
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification merged: 16243,16763
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SymbolicClassificationModel.cs
r15584 r17054 74 74 } 75 75 76 public virtual bool IsProblemDataCompatible(IClassificationProblemData problemData, out string errorMessage) { 77 return ClassificationModel.IsProblemDataCompatible(this, problemData, out errorMessage); 78 } 79 80 public override bool IsProblemDataCompatible(IDataAnalysisProblemData problemData, out string errorMessage) { 81 if (problemData == null) throw new ArgumentNullException("problemData", "The provided problemData is null."); 82 var classificationProblemData = problemData as IClassificationProblemData; 83 if (classificationProblemData == null) 84 throw new ArgumentException("The problem data is not compatible with this classification model. Instead a " + problemData.GetType().GetPrettyName() + " was provided.", "problemData"); 85 return IsProblemDataCompatible(classificationProblemData, out errorMessage); 86 } 87 76 88 #region events 77 89 public event EventHandler TargetVariableChanged;
Note: See TracChangeset
for help on using the changeset viewer.