Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/25/20 01:23:08 (4 years ago)
Author:
abeham
Message:

#2521: Made encodings non-generic classes (the TEncodedSolution type parameter is not actually used), this will make it considerably easier to port the VRP to the new architecture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/SingleObjectiveProblem.cs

    r17697 r17699  
    3636    ISingleObjectiveProblem<TEncoding, TEncodedSolution>,
    3737    ISingleObjectiveProblemDefinition<TEncoding, TEncodedSolution>
    38     where TEncoding : class, IEncoding<TEncodedSolution>
     38    where TEncoding : class, IEncoding
    3939    where TEncodedSolution : class, IEncodedSolution {
    4040
     
    8585      Operators.Add(new SingleObjectiveMoveEvaluator<TEncodedSolution>());
    8686      Operators.Add(new SingleObjectiveMoveGenerator<TEncodedSolution>());
    87       Operators.Add(new SingleObjectiveMoveMaker<TEncodedSolution>());
     87      Operators.Add(new SingleObjectiveMoveMaker());
    8888
    8989      Parameterize();
Note: See TracChangeset for help on using the changeset viewer.