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/MultiObjectiveEvaluator.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
     
    5656      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
    5757      Parameters.Add(new LookupParameter<IMultiObjectiveProblemDefinition>("ProblemDefinition", "The host that holds the problem definition."));
    58       Parameters.Add(new LookupParameter<Encoding>("Encoding", "An item that holds the problem's encoding."));
     58      Parameters.Add(new LookupParameter<IEncoding>("Encoding", "An item that holds the problem's encoding."));
    5959      Parameters.Add(new LookupParameter<DoubleArray>("Qualities", "The qualities of the parameter vector."));
    6060    }
Note: See TracChangeset for help on using the changeset viewer.