Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/31/11 11:52:11 (13 years ago)
Author:
abeham
Message:

#1628

  • Updated branch from trunk
  • Changed ReferenceEqualityComparer<T> to become a non-generic class (generic implementation probably was only made because of lacking support for co- and contravariance in C# 3.5)
  • Added finished experiment from sample algorithms to the tests
  • Wrote a unit test to instantiate every IDeepCloneable type, clone it and compare the objects in the object graph for equal references
  • Wrote a unit test to load the experiment, clone it and compare again the objects in the object graph
  • Preliminary fix for a potential bug in ThreadSafeLog
  • Preliminary fix for a potential bug in OperatorGraphVisualizationInfo
  • Preliminary fix for a potential bug in Calculator (and added license headers)
  • Preliminary fix for a potential bug in ScrambleMove
Location:
branches/GeneralizedQAP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP

  • branches/GeneralizedQAP/HeuristicLab.Analysis.Views/3.3/DataRowVisualPropertiesControl.cs

    r6628 r6685  
    8080          lineStyleComboBox.SelectedItem = Content.LineStyle;
    8181          startIndexZeroCheckBox.Checked = Content.StartIndexZero;
    82           lineWidthNumericUpDown.Value = Content.LineWidth;
    83           binsNumericUpDown.Value = Content.Bins;
     82          if (Content.LineWidth < lineWidthNumericUpDown.Minimum)
     83            lineWidthNumericUpDown.Value = lineWidthNumericUpDown.Minimum;
     84          else if (Content.LineWidth > lineWidthNumericUpDown.Maximum)
     85            lineWidthNumericUpDown.Value = lineWidthNumericUpDown.Maximum;
     86          else lineWidthNumericUpDown.Value = Content.LineWidth;
     87          if (Content.Bins < binsNumericUpDown.Minimum)
     88            binsNumericUpDown.Value = binsNumericUpDown.Minimum;
     89          else if (Content.Bins > binsNumericUpDown.Maximum)
     90            binsNumericUpDown.Value = binsNumericUpDown.Maximum;
     91          else binsNumericUpDown.Value = Content.Bins;
    8492          binsApproximatelyRadioButton.Checked = !Content.ExactBins;
    8593          binsExactRadioButton.Checked = Content.ExactBins;
Note: See TracChangeset for help on using the changeset viewer.