Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/03/19 15:37:38 (5 years ago)
Author:
mkommend
Message:

#2521: Renamed Solution to EncodedSolution.

File:
1 edited

Legend:

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

    r16723 r16751  
    2424namespace HeuristicLab.Optimization {
    2525  [StorableType("747a3cea-b9ba-4322-a5c2-050cd7e16e2a")]
    26   public interface IProblemDefinition<TEncoding, TSolution>
    27     where TEncoding : class, IEncoding<TSolution>
    28     where TSolution : class, ISolution {
     26  public interface IProblemDefinition<TEncoding, TEncodedSolution>
     27    where TEncoding : class, IEncoding<TEncodedSolution>
     28    where TEncodedSolution : class, IEncodedSolution {
    2929    TEncoding Encoding { get; }
    3030  }
Note: See TracChangeset for help on using the changeset viewer.