Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/13/08 23:20:02 (17 years ago)
Author:
swagner
Message:

Worked on ticket #48

  • merged changes from branch Modularization (r55:59) back into trunk again
File:
1 edited

Legend:

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

    r47 r61  
    360360        }
    361361      } else {
    362         return scope.GetVariableValue(info.ActualName, recursiveLookup, throwOnError);
     362        return scope.GetVariableValue(formalName, recursiveLookup, throwOnError);
    363363      }
    364364    }
     
    367367    public virtual IOperation Execute(IScope scope) {
    368368      myCanceled = false;
     369
     370      foreach (IVariableInfo variableInfo in VariableInfos)
     371        scope.AddAlias(variableInfo.FormalName, variableInfo.ActualName);
     372
    369373      IOperation next = Apply(scope);
    370374      OnExecuted();
Note: See TracChangeset for help on using the changeset viewer.