Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/08 23:00:48 (16 years ago)
Author:
gkronber
Message:

fixed compilation problems introduced with r428 (ticket #225)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/TreeGardener.cs

    r325 r429  
    216216      Scope tempScope = new Scope("Temp. initialization scope");
    217217
    218       var parametricTrees = trees.Where(t => t.Function.GetVariable(GPOperatorLibrary.INITIALIZATION) != null);
     218      var parametricTrees = trees.Where(t => t.Function.GetVariable(FunctionBase.INITIALIZATION) != null);
    219219      foreach(IFunctionTree tree in parametricTrees) {
    220220        // enqueue an initialization operation for each operator with local variables
    221         IOperator initialization = (IOperator)tree.Function.GetVariable(GPOperatorLibrary.INITIALIZATION).Value;
     221        IOperator initialization = (IOperator)tree.Function.GetVariable(FunctionBase.INITIALIZATION).Value;
    222222        Scope initScope = new Scope();
    223223        // copy the local variables into a temporary scope used for initialization
Note: See TracChangeset for help on using the changeset viewer.