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/LocalAnalysis.cs

    r8002 r8172  
    5656      get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
    5757    }
    58     public ConstrainedValueParameter<IManipulator> MutatorParameter {
    59       get { return (ConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
    60     }
    61     public ConstrainedValueParameter<ISelector> SelectorParameter {
    62       get { return (ConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
     58    public IConstrainedValueParameter<IManipulator> MutatorParameter {
     59      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     60    }
     61    public IConstrainedValueParameter<ISelector> SelectorParameter {
     62      get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
    6363    }
    6464    private ValueParameter<IntValue> MaximumIterationsParameter {
Note: See TracChangeset for help on using the changeset viewer.