Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/06/15 11:47:44 (8 years ago)
Author:
pfleck
Message:

#2269

  • Added some missing wiring.
  • Unified some parameter properties.
  • Removed some operators.
File:
1 edited

Legend:

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

    r13124 r13127  
    6969      scopes.Add(newScope);
    7070
    71 
    7271      var next = new OperationCollection(base.Apply());
    73       next.Insert(0, ExecutionContext.CreateChildOperation(NewScopeOperator, newScope));
     72      if (NewScopeOperator != null)
     73        next.Insert(0, ExecutionContext.CreateOperation(NewScopeOperator, newScope));
    7474      return next;
    7575    }
Note: See TracChangeset for help on using the changeset viewer.