Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 12:49:05 (14 years ago)
Author:
svonolfe
Message:
  • Updated OneMax analyzer
  • Updated Knapsack analyzer
  • Fixed bug in OneMax and TF analyzer views

(#999)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.OneMax.Views/3.3/OneMaxSolutionView.cs

    r3649 r3667  
    6363        Invoke(new EventHandler(Content_QualityChanged), sender, e);
    6464      else {
    65         qualityView.ViewType = null;
    6665        qualityView.Content = Content.Quality;
    6766      }
     
    7069    void Content_BinaryVectorChanged(object sender, EventArgs e) {
    7170      if (InvokeRequired)
    72         Invoke(new EventHandler(Content_QualityChanged), sender, e);
     71        Invoke(new EventHandler(Content_BinaryVectorChanged), sender, e);
    7372      else {
    74         binaryVectorView.ViewType = null;
    7573        binaryVectorView.Content = Content.BinaryVector;
    7674      }
     
    8482        binaryVectorView.Content = null;
    8583      } else {
    86         qualityView.ViewType = null;
    8784        qualityView.Content = Content.Quality;
    88 
    89         binaryVectorView.ViewType = null;
    9085        binaryVectorView.Content = Content.BinaryVector;
    9186      }
Note: See TracChangeset for help on using the changeset viewer.