- Timestamp:
- 07/10/17 14:32:37 (7 years ago)
- Location:
- branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/HeuristicLab.Algorithms.MOCMAEvolutionStrategy-3.3.csproj
r15089 r15175 106 106 </ItemGroup> 107 107 <ItemGroup> 108 <Compile Include="IDominatingArchive.cs" />109 108 <Compile Include="Indicators\MinimalDistanceIndicator.cs" /> 110 109 <Compile Include="Indicators\CrowdingIndicator.cs" /> 111 110 <Compile Include="Indicators\HypervolumeIndicator.cs" /> 112 111 <Compile Include="IIndicator.cs" /> 113 <Compile Include="Archives\ListArchive.cs" />114 112 <Compile Include="Individual.cs" /> 115 113 <Compile Include="MOCMAEvolutionStrategy.cs" /> -
branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/IIndicator.cs
r15045 r15175 32 32 /// <typeparam name="TR"></typeparam> 33 33 /// <param name="front">a front which will be evaluated</param> 34 /// <param name="problem">The problem on which the front is evaluated (!! The function itself will NOT be evluated only bounds referencePoints & other metadat ewill be used</param>34 /// <param name="problem">The problem on which the front is evaluated (!! The function itself will NOT be evluated only bounds referencePoints & other metadata will be used</param> 35 35 /// <returns>the index of the least contributing point according to any type of quality criteria</returns> 36 36 int LeastContributer(IReadOnlyList<Individual> front, MultiObjectiveBasicProblem<RealVectorEncoding> problem);
Note: See TracChangeset
for help on using the changeset viewer.