Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/29/16 15:46:48 (7 years ago)
Author:
abeham
Message:

#2701, #2708: Made a new branch from ProblemRefactoring and removed ScopedBasicAlgorithm branch (which becomes MemPR branch)

Location:
branches/MemPRAlgorithm
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/MemPRAlgorithm/HeuristicLab.Algorithms.MemPR/3.3/Optimization/Interfaces.cs

    r14420 r14429  
    110110  }
    111111
     112  public interface IBestQualityContext : IExecutionContext {
     113    double BestQuality { get; set; }
     114  }
     115
     116  public interface IBestSolutionContext<TSolution> : IExecutionContext {
     117    TSolution BestSolution { get; set; }
     118  }
     119
    112120  public interface IIterationsContext : IExecutionContext {
    113121    int Iterations { get; }
Note: See TracChangeset for help on using the changeset viewer.