Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/11 10:00:31 (13 years ago)
Author:
abeham
Message:

#1465

  • updated branch with trunk changes
Location:
branches/histogram
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram

  • branches/histogram/HeuristicLab.Analysis

  • branches/histogram/HeuristicLab.Analysis/3.3/QualityAnalysis/BestAverageWorstQualityAnalyzer.cs

    r5445 r6046  
    6868      get { return (ValueLookupParameter<PercentValue>)Parameters["RelativeDifferenceBestKnownToBest"]; }
    6969    }
    70     public ValueLookupParameter<VariableCollection> ResultsParameter {
    71       get { return (ValueLookupParameter<VariableCollection>)Parameters["Results"]; }
     70    public ValueLookupParameter<ResultCollection> ResultsParameter {
     71      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
    7272    }
    7373    #endregion
     
    106106      Parameters.Add(new ValueLookupParameter<DoubleValue>("AbsoluteDifferenceBestKnownToBest", "The absolute difference of the best known quality value to the best quality value."));
    107107      Parameters.Add(new ValueLookupParameter<PercentValue>("RelativeDifferenceBestKnownToBest", "The relative difference of the best known quality value to the best quality value."));
    108       Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The results collection where the analysis values should be stored."));
     108      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The results collection where the analysis values should be stored."));
    109109      #endregion
    110110
     
    166166    private void AfterDeserialization() {
    167167      Initialize();
     168      // BackwardsCompatibility3.3
     169      #region Backwards compatible code, remove with 3.4
     170      if (Parameters["Results"] is ValueLookupParameter<VariableCollection>) {
     171        Parameters.Remove("Results");
     172        Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The results collection where the analysis values should be stored."));
     173      }
     174      #endregion
    168175    }
    169    
     176
    170177    private void Initialize() {
    171178      QualityParameter.DepthChanged += new EventHandler(QualityParameter_DepthChanged);
Note: See TracChangeset for help on using the changeset viewer.