Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Algorithms.CMAEvolutionStrategy/sources/3.3/MOCMAES/IIndicator.cs @ 13909

Last change on this file since 13909 was 13909, checked in by bwerth, 8 years ago

#2592 added analysation and CrowdingIndicator

File size: 305 bytes
Line 
1using HeuristicLab.Problems.MultiObjectiveTestFunctions;
2using System;
3
4namespace HeuristicLab.Algorithms.CMAEvolutionStrategy
5{
6    public interface IIndicator
7    {
8        int leastContributer<R>(R[] front_, Func<R, double[]> extractor, MultiObjectiveTestFunctionProblem problem);
9    }
10}
Note: See TracBrowser for help on using the repository browser.