Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/18/08 15:56:41 (16 years ago)
Author:
swagner
Message:

Fixed ticket #68

  • removed aliases again after an operator has been executed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/OperatorBase.cs

    r61 r76  
    4141    }
    4242
    43     private bool myCanceled;
     43    protected bool myCanceled;
    4444    public bool Canceled {
    4545      get { return myCanceled; }
     
    372372
    373373      IOperation next = Apply(scope);
     374
     375      foreach (IVariableInfo variableInfo in VariableInfos)
     376        scope.RemoveAlias(variableInfo.FormalName);
     377
    374378      OnExecuted();
    375379      return next;
Note: See TracChangeset for help on using the changeset viewer.