Free cookie consent management tool by TermsFeed Policy Generator

Changeset 497


Ignore:
Timestamp:
08/11/08 15:13:59 (16 years ago)
Author:
gkronber
Message:

fixed the bug in the run scheduler that caused full expansion of all operator links (#211)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/RunScheduler.cs

    r493 r497  
    134134        return op;
    135135      }
    136       foreach(VariableInfo varInfo in op.VariableInfos) {
    137         IVariable var = op.GetVariable(varInfo.ActualName);
    138         if(var != null && var.Value is IOperatorGraph) {
    139           PatchLinks((IOperatorGraph)var.Value, patchedOperators);
    140         } else if(var != null && var.Value is IOperator) {
    141           PatchLinks((IOperator)var.Value, patchedOperators);
    142         }
    143       }
    144136      return op;
    145137    }
Note: See TracChangeset for help on using the changeset viewer.