Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/01/12 14:36:47 (12 years ago)
Author:
gkronber
Message:

#1797: adapted return type of ConstrainedValueParameter properties in FLA branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Algorithms/RepeatedLocalAnalysis.cs

    r8002 r8172  
    5858      get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
    5959    }
    60     public ConstrainedValueParameter<IManipulator> MutatorParameter {
    61       get { return (ConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    62     }
    63     public ConstrainedValueParameter<ISelector> SelectorParameter {
    64       get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
     60    public IConstrainedValueParameter<IManipulator> MutatorParameter {
     61      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     62    }
     63    public IConstrainedValueParameter<ISelector> SelectorParameter {
     64      get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    6565    }
    6666    private ValueParameter<IntValue> MaximumIterationsParameter {
     
    162162      laMainLoop.RandomParameter.ActualName = RandomCreator.RandomParameter.ActualName;
    163163      laMainLoop.ResultsParameter.ActualName = "Results";
    164       laMainLoop.AnalyzerParameter.ActualName = AnalyzerParameter.Name;     
     164      laMainLoop.AnalyzerParameter.ActualName = AnalyzerParameter.Name;
    165165
    166166      qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
Note: See TracChangeset for help on using the changeset viewer.