Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/15 11:02:16 (9 years ago)
Author:
ascheibe
Message:

#2306 fixed typos and some cosmetic changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FitnessLandscapeAnalysis/HeuristicLab.Problems.NK/NKMoveEvaluator.cs

    r12566 r12569  
    2525using HeuristicLab.Encodings.BinaryVectorEncoding;
    2626using HeuristicLab.Operators;
    27 using HeuristicLab.Optimization;
    2827using HeuristicLab.Parameters;
    2928using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    3130namespace HeuristicLab.Problems.NK {
    3231
    33   [Item("NKMoveEvaluator", "A base class for operators which evaluate moves on the NK Lanscape.")]
     32  [Item("NKMoveEvaluator", "A base class for operators which evaluate moves on the NK Landscape.")]
    3433  [StorableClass]
    35   public abstract class NKMoveEvaluator : SingleSuccessorOperator, INKMoveEvaluator, IMoveOperator, IBinaryVectorMoveOperator {
     34  public abstract class NKMoveEvaluator : SingleSuccessorOperator, INKMoveEvaluator, IBinaryVectorMoveOperator {
    3635
    3736    public ILookupParameter<DoubleValue> QualityParameter {
     
    4443      get { return (ILookupParameter<BinaryVector>)Parameters["BinaryVector"]; }
    4544    }
    46     public LookupParameter<BoolMatrix> GeneInteractionsParameter {
    47       get { return (LookupParameter<BoolMatrix>)Parameters["GeneInteractions"]; }
     45    public ILookupParameter<BoolMatrix> GeneInteractionsParameter {
     46      get { return (ILookupParameter<BoolMatrix>)Parameters["GeneInteractions"]; }
    4847    }
    49     public LookupParameter<IntValue> InteractionSeedParameter {
    50       get { return (LookupParameter<IntValue>)Parameters["InteractionSeed"]; }
     48    public ILookupParameter<IntValue> InteractionSeedParameter {
     49      get { return (ILookupParameter<IntValue>)Parameters["InteractionSeed"]; }
    5150    }
    52     public LookupParameter<DoubleArray> WeightsParameter {
    53       get { return (LookupParameter<DoubleArray>)Parameters["Weights"]; }
     51    public ILookupParameter<DoubleArray> WeightsParameter {
     52      get { return (ILookupParameter<DoubleArray>)Parameters["Weights"]; }
    5453    }
    5554
Note: See TracChangeset for help on using the changeset viewer.