Free cookie consent management tool by TermsFeed Policy Generator

Changeset 17358


Ignore:
Timestamp:
11/20/19 14:54:47 (4 years ago)
Author:
mkommend
Message:

#2521: Corrected cloning method of solution contexts.

File:
1 edited

Legend:

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

    r17357 r17358  
    8080    public SingleObjectiveSolutionContext(StorableConstructorFlag _) : base(_) {    }
    8181
    82     public SingleObjectiveSolutionContext(SolutionContext original, Cloner cloner) : base(original, cloner) { }
     82    public SingleObjectiveSolutionContext(SingleObjectiveSolutionContext original, Cloner cloner) : base(original, cloner) { }
    8383
    8484
     
    100100    public MultiObjectiveSolutionContext(StorableConstructorFlag _) : base(_) { }
    101101
    102     public MultiObjectiveSolutionContext(SolutionContext original, Cloner cloner) : base(original, cloner) { }
     102    public MultiObjectiveSolutionContext(MultiObjectiveSolutionContext original, Cloner cloner) : base(original, cloner) { }
    103103
    104104
Note: See TracChangeset for help on using the changeset viewer.