Changeset 11617
- Timestamp:
- 12/02/14 11:06:43 (10 years ago)
- Location:
- branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/HeuristicLab.Algorithms.ALPS-3.3.csproj
r11609 r11617 78 78 </ItemGroup> 79 79 <ItemGroup> 80 <Compile Include="AgeDiversityAnalyzer.cs" /> 80 81 <Compile Include="AgingScheme.cs" /> 81 82 <Compile Include="AlpsGeneticAlgorithm.cs" /> -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/MatingPoolCreator.cs
r11609 r11617 50 50 51 51 foreach (var individual in prevSubPopulation) 52 currentSubPopulation.Add( individual);52 currentSubPopulation.Add((IScope)individual.Clone(new Cloner())); 53 53 } 54 54
Note: See TracChangeset
for help on using the changeset viewer.