Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/15 18:55:07 (9 years ago)
Author:
pfleck
Message:

#1674

  • Added a SupportScript for the MultiObjectiveExternalEvaluationProblem.
  • Extracted code from the SingleObjectiveOptimizationSupportScript into the OptimizationSupportScript to reuse code for the MultiObjectiveOptimizationSupportScript.
File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IMultiObjectiveOptimizationSupport.cs

    r13166 r13183  
    2020#endregion
    2121
    22 using System.Collections.Generic;
    2322using HeuristicLab.Core;
    2423using HeuristicLab.Optimization;
    2524
    2625namespace HeuristicLab.Problems.ExternalEvaluation {
    27   public interface ISingleObjectiveOptimizationSupport {
    28     void Analyze(Individual[] individuals, double[] qualities, ResultCollection results, IRandom random);
    29     IEnumerable<Individual> GetNeighbors(Individual individual, IRandom random);
     26  public interface IMultiObjectiveOptimizationSupport {
     27    void Analyze(Individual[] individuals, double[][] qualities, ResultCollection results, IRandom random);
    3028  }
    3129}
Note: See TracChangeset for help on using the changeset viewer.