Changeset 15054
- Timestamp:
- 06/25/17 08:26:17 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/FactorPartialDependencePlot.cs
r14852 r15054 419 419 420 420 public async Task RemoveSolutionAsync(IRegressionSolution solution) { 421 throw new NotSupportedException(); 421 if (!solutions.Remove(solution)) 422 return; 423 424 seriesCache.Remove(solution); 425 ciSeriesCache.Remove(solution); 426 427 await RecalculateAsync(); 428 var args = new EventArgs<IRegressionSolution>(solution); 429 OnSolutionRemoved(this, args); 422 430 } 423 431
Note: See TracChangeset
for help on using the changeset viewer.