Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/20/14 15:12:27 (9 years ago)
Author:
mkommend
Message:

#2174: Adapted IEncoding and Encoding base class.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Operators/SingleObjectiveMoveEvaluator.cs

    r11484 r11559  
    4242    }
    4343
    44     public ILookupParameter<Encoding> EncodingParameter {
    45       get { return (ILookupParameter<Encoding>)Parameters["Encoding"]; }
     44    public ILookupParameter<IEncoding> EncodingParameter {
     45      get { return (ILookupParameter<IEncoding>)Parameters["Encoding"]; }
    4646    }
    4747
     
    6060      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
    6161      Parameters.Add(new LookupParameter<ISingleObjectiveProblemDefinition>("ProblemDefinition", "The host that holds the problem definition."));
    62       Parameters.Add(new LookupParameter<Encoding>("Encoding", "An item that holds the problem's encoding."));
     62      Parameters.Add(new LookupParameter<IEncoding>("Encoding", "An item that holds the problem's encoding."));
    6363      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality of the parameter vector."));
    6464      Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The quality of the move."));
Note: See TracChangeset for help on using the changeset viewer.