Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/20 16:38:33 (4 years ago)
Author:
mkommend
Message:

#2521: Added first version of problem results.

File:
1 edited

Legend:

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

    r17513 r17612  
    3232  /// </summary>
    3333  public interface IProblem : IParameterizedNamedItem, IStorableContent {
     34    //TODO extract into interface? ResultsProducingItems? Problem and Algorithm
     35    ResultCollection Results { get; }
    3436
    3537    event EventHandler Reset;
     
    4850  public interface IProblem<TEncoding, TEncodedSolution> : IHeuristicOptimizationProblem
    4951    where TEncoding : class, IEncoding<TEncodedSolution>
    50     where TEncodedSolution : class, IEncodedSolution { }
     52    where TEncodedSolution : class, IEncodedSolution {
     53  }
    5154}
Note: See TracChangeset for help on using the changeset viewer.