- Timestamp:
- 06/23/17 12:24:27 (7 years ago)
- Location:
- branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3
- Files:
-
- 7 added
- 7 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/HeuristicLab.Algorithms.MOCMAEvolutionStrategy-3.3.csproj
r14577 r15045 106 106 </ItemGroup> 107 107 <ItemGroup> 108 <Compile Include=" MinimalDistanceIndicator.cs" />109 <Compile Include=" CrowdingIndicator.cs" />110 <Compile Include=" HypervolumeIndicator.cs" />108 <Compile Include="Indicators\MinimalDistanceIndicator.cs" /> 109 <Compile Include="Indicators\CrowdingIndicator.cs" /> 110 <Compile Include="Indicators\HypervolumeIndicator.cs" /> 111 111 <Compile Include="IIndicator.cs" /> 112 <Compile Include="MocmaesIndividual.cs" /> 113 <Compile Include="MocmaesParameters.cs" /> 114 <Compile Include="MOCMASEvolutionStrategy.cs" /> 112 <Compile Include="Individual.cs" /> 113 <Compile Include="MOCMAEvolutionStrategy.cs" /> 115 114 <Compile Include="Plugin.cs" /> 116 115 <Compile Include="Properties\AssemblyInfo.cs" /> 117 <Compile Include=" Utilities.cs" />116 <Compile Include="DoubleMatrixHelper.cs" /> 118 117 </ItemGroup> 119 118 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/IIndicator.cs
r14577 r15045 19 19 */ 20 20 #endregion 21 using System;22 21 using System.Collections.Generic; 23 22 using HeuristicLab.Core; … … 33 32 /// <typeparam name="TR"></typeparam> 34 33 /// <param name="front">a front which will be evaluated</param> 35 /// <param name="extractor">some mapping function to map any R to double[]</param>36 34 /// <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> 37 35 /// <returns>the index of the least contributing point according to any type of quality criteria</returns> 38 int LeastContributer <TR>(IEnumerable<TR> front, Func<TR, double[]> extractor, MultiObjectiveBasicProblem<RealVectorEncoding> problem);36 int LeastContributer(IReadOnlyList<Individual> front, MultiObjectiveBasicProblem<RealVectorEncoding> problem); 39 37 } 40 38 }
Note: See TracChangeset
for help on using the changeset viewer.