Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/13 16:46:49 (11 years ago)
Author:
mkommend
Message:

#1996: Corrected OperatorGraph.Iterate to include AlgorithmOperators.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/OperatorGraph.cs

    r9075 r9178  
    263263        visited.Add(current);
    264264
     265        IOperatorGraphOperator operatorGraphOperator = current as IOperatorGraphOperator;
     266        if (operatorGraphOperator != null) open.Push(operatorGraphOperator.OperatorGraph.InitialOperator);
     267
    265268        foreach (var parameter in current.Parameters.OfType<IValueParameter>()) {
    266269          if (!typeof(IOperator).IsAssignableFrom(parameter.DataType)) continue;
Note: See TracChangeset for help on using the changeset viewer.