Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/18/08 16:00:00 (17 years ago)
Author:
swagner
Message:

Fixed ticket #67

  • adapted accessing of variables in operators due to changes of variable lookup and the new name aliasing mechanism (actual/formal name translations should not be done directly anymore; instead the new method Scope.TranslateName should be used)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/ProgrammableOperator.cs

    r2 r77  
    163163              AddVariable(new Variable(info.ActualName, value));
    164164            } else {
    165               scope.AddVariable(new Variable(info.ActualName, value));
     165              scope.AddVariable(new Variable(scope.TranslateName(info.FormalName), value));
    166166            }
    167167            parameters[i] = value;
Note: See TracChangeset for help on using the changeset viewer.