Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/16/17 14:25:56 (7 years ago)
Author:
bwerth
Message:

#2592 made MOCMAES compatible with MultiObjectiveBasicProblem instead of MultiObjectiveTestfunction, fixed Bug in CrowdingIndicator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/IIndicator.cs

    r14404 r14577  
    2222using System.Collections.Generic;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Problems.TestFunctions.MultiObjective;
     24using HeuristicLab.Encodings.RealVectorEncoding;
     25using HeuristicLab.Optimization;
    2526
    2627namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy {
     
    3536    /// <param name="problem">The problem on which the front is evaluated (!! The function itself will NOT be evluated only bounds referencePoints & other metadate will be used</param>
    3637    /// <returns>the index of the least contributing point according to any type of quality criteria</returns>
    37     int LeastContributer<TR>(IEnumerable<TR> front, Func<TR, double[]> extractor, MultiObjectiveTestFunctionProblem problem);
     38    int LeastContributer<TR>(IEnumerable<TR> front, Func<TR, double[]> extractor, MultiObjectiveBasicProblem<RealVectorEncoding> problem);
    3839  }
    3940}
Note: See TracChangeset for help on using the changeset viewer.