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.
Location:
branches/ALPS/HeuristicLab.Operators/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ALPS/HeuristicLab.Operators/3.3/FirstSubScopeProcessor.cs

    r11586 r11590  
    2929namespace HeuristicLab.Operators {
    3030  [Item("FirstSubScopeProsessor", "An operator which applies a specified operator on the first sub-scope.")]
    31   public class FirstSubScopeProcessor : SingleSuccessorOperator {
     31  [StorableClass]
     32  public sealed class FirstSubScopeProcessor : SingleSuccessorOperator {
    3233    private OperatorParameter OperatorParameter {
    3334      get { return (OperatorParameter)Parameters["Operator"]; }
  • branches/ALPS/HeuristicLab.Operators/3.3/LastSubScopeProcessor.cs

    r11586 r11590  
    2929namespace HeuristicLab.Operators {
    3030  [Item("LastSubScopeProsessor", "An operator which applies a specified operator on the last sub-scope.")]
    31   public class LastSubScopeProcessor : SingleSuccessorOperator {
     31  [StorableClass]
     32  public sealed class LastSubScopeProcessor : SingleSuccessorOperator {
    3233    private OperatorParameter OperatorParameter {
    3334      get { return (OperatorParameter)Parameters["Operator"]; }
Note: See TracChangeset for help on using the changeset viewer.