Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/11 15:14:45 (13 years ago)
Author:
gkronber
Message:

#1418 implemented linear scaling for classification solutions, fixed bugs interactive simplifier view for classification solutions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/DiscriminantFunctionClassificationSolutionView.cs

    r5717 r5736  
    9898    }
    9999    private void Content_ModelChanged(object sender, EventArgs e) {
     100      Content.Model.ThresholdsChanged += new EventHandler(Model_ThresholdsChanged);
    100101      UpdateChart();
    101102    }
    102     private void Content_ThresholdsChanged(object sender, EventArgs e) {
     103    private void Model_ThresholdsChanged(object sender, EventArgs e) {
    103104      AddThresholds();
    104105    }
     
    244245
    245246      thresholds[classIndex] = e.NewLocationY;
    246       Content.Model.Thresholds = thresholds;
     247      Content.Model.SetThresholdsAndClassValues(thresholds, Content.Model.ClassValues);
    247248    }
    248249
Note: See TracChangeset for help on using the changeset viewer.