Changeset 15492 for branches/GeneralizedQAP/HeuristicLab.Optimization
- Timestamp:
- 12/04/17 23:19:44 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Optimization/3.3
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r15490 r15492 156 156 <Compile Include="Interfaces\ILocalImprovementAlgorithmOperator.cs" /> 157 157 <Compile Include="Interfaces\IMultiObjectiveOperator.cs" /> 158 <Compile Include="Interfaces\IPopulationReducer.cs" /> 158 159 <Compile Include="MultiObjective\DominationCalculator.cs" /> 159 160 <Compile Include="Results\IResultParameter.cs" /> -
branches/GeneralizedQAP/HeuristicLab.Optimization/3.3/Interfaces/IPopulationReducer.cs
r15454 r15492 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HeuristicLab.Optimization;25 24 26 namespace HeuristicLab. Problems.GeneralizedQuadraticAssignment.Common {25 namespace HeuristicLab.Optimization { 27 26 public interface IPopulationReducer : IReducer { 28 27 ILookupParameter<IntValue> MinimumPopulationSizeParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.