Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12260


Ignore:
Timestamp:
03/26/15 15:27:58 (9 years ago)
Author:
pfleck
Message:

#2269

  • Changed default setting of selector for ALPS.
  • Fixed automatic LayerResult wiring.
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  
    257257        IParameter resultParameter;
    258258        if (analyzer.Value.Parameters.TryGetValue("Results", out resultParameter)) {
    259           var lookupParameter = resultParameter as ILookupParameter<ResultCollection>;
     259          var lookupParameter = resultParameter as ILookupParameter;
    260260          if (lookupParameter != null)
    261261            lookupParameter.ActualName = "LayerResults";
  • branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithm.cs

    r12186 r12260  
    196196      var tournamentSelector = SelectorParameter.ValidValues.OfType<TournamentSelector>().FirstOrDefault();
    197197      if (tournamentSelector != null) {
    198         tournamentSelector.GroupSizeParameter.Value = new IntValue(5);
     198        tournamentSelector.GroupSizeParameter.Value = new IntValue(4);
    199199        SelectorParameter.Value = tournamentSelector;
    200200      }
Note: See TracChangeset for help on using the changeset viewer.