- Timestamp:
- 03/26/15 15:27:58 (10 years ago)
- Location:
- branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/Alps.cs
r12197 r12260 257 257 IParameter resultParameter; 258 258 if (analyzer.Value.Parameters.TryGetValue("Results", out resultParameter)) { 259 var lookupParameter = resultParameter as ILookupParameter <ResultCollection>;259 var lookupParameter = resultParameter as ILookupParameter; 260 260 if (lookupParameter != null) 261 261 lookupParameter.ActualName = "LayerResults"; -
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithm.cs
r12186 r12260 196 196 var tournamentSelector = SelectorParameter.ValidValues.OfType<TournamentSelector>().FirstOrDefault(); 197 197 if (tournamentSelector != null) { 198 tournamentSelector.GroupSizeParameter.Value = new IntValue( 5);198 tournamentSelector.GroupSizeParameter.Value = new IntValue(4); 199 199 SelectorParameter.Value = tournamentSelector; 200 200 }
Note: See TracChangeset
for help on using the changeset viewer.