Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/26/14 17:22:19 (10 years ago)
Author:
pfleck
Message:

#2269

  • Finished implementing LayerUpdator.
  • Proper implemented per-layer results.
  • Some bugfixes and wiring.
  • Added LastSubScopeCloner. Note that the First/LastSubScopeCloner/Processor might be dropped and Left/Right-Selectors are used instead. Thanks to jkarder for this suggestion.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/EldersEmigrator.cs

    r11586 r11590  
    2020#endregion
    2121
    22 using System.Linq;
    2322using HeuristicLab.Common;
    2423using HeuristicLab.Core;
    2524using HeuristicLab.Data;
    2625using HeuristicLab.Operators;
    27 using HeuristicLab.Optimization.Operators;
    2826using HeuristicLab.Parameters;
    2927using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    4038    public IScopeTreeLookupParameter<DoubleValue> QualityParameter {
    4139      get { return (IScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
    42     }
    43 
    44     public SolutionsCreator SolutionsCreator {
    45       get { return OperatorGraph.Iterate().OfType<SolutionsCreator>().First(); }
    4640    }
    4741
     
    7771      selectorProsessor.Successor = shiftToRightMigrator;
    7872
     73      eldersSelector.CopySelected = new BoolValue(false);
    7974      eldersSelector.Successor = null;
    8075
     
    9994      bestSelector.QualityParameter.ActualName = QualityParameter.Name;
    10095      bestSelector.MaximizationParameter.ActualName = MaximizationParameter.Name;
     96      bestSelector.CopySelected = new BoolValue(false);
    10197      bestSelector.Successor = rightReducer;
    10298
Note: See TracChangeset for help on using the changeset viewer.