Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/17/16 14:13:55 (8 years ago)
Author:
bwerth
Message:

#2592 added analysation and CrowdingIndicator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Algorithms.CMAEvolutionStrategy/sources/3.3/MOCMAES/IIndicator.cs

    r13793 r13909  
    1 using System;
     1using HeuristicLab.Problems.MultiObjectiveTestFunctions;
     2using System;
    23
    3 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy {
    4   public interface IIndicator {
    5     int leastContributer<R>(R[] front_, Func<R, double[]> extractor);
    6   }
     4namespace HeuristicLab.Algorithms.CMAEvolutionStrategy
     5{
     6    public interface IIndicator
     7    {
     8        int leastContributer<R>(R[] front_, Func<R, double[]> extractor, MultiObjectiveTestFunctionProblem problem);
     9    }
    710}
Note: See TracChangeset for help on using the changeset viewer.