Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/15 16:14:57 (8 years ago)
Author:
mkommend
Message:

#2521: Rectored problems and encodings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces/IProblem.cs

    r13336 r13339  
    3636  }
    3737
    38   public interface IProblem<TSolution> : IHeuristicOptimizationProblem where TSolution : class, ISolution {
    39     IEncoding<TSolution> Encoding { get; }
     38  public interface IProblem<TEncoding, TSolution> : IHeuristicOptimizationProblem, IProblemDefinition<TEncoding, TSolution>
     39    where TEncoding : class, IEncoding<TSolution>
     40    where TSolution : class, ISolution {
    4041  }
    4142}
Note: See TracChangeset for help on using the changeset viewer.