Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/11/08 15:02:25 (16 years ago)
Author:
gkronber
Message:

fixed a bug (#211)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Metaprogramming/SequentialComposer.cs

    r466 r496  
    4646      foreach(StringData opName in parts) {
    4747        CombinedOperator subOp = scope.GetVariableValue<CombinedOperator>(opName.Data, true);
    48         foreach(IOperator op in subOp.OperatorGraph.Operators)
    49           combOp.OperatorGraph.AddOperator(op);
    50         seq.AddSubOperator(subOp.OperatorGraph.InitialOperator);
     48        combOp.OperatorGraph.AddOperator(subOp);
     49        seq.AddSubOperator(subOp);
    5150      }
    5251      combOp.OperatorGraph.AddOperator(seq);
Note: See TracChangeset for help on using the changeset viewer.