Changeset 496
- Timestamp:
- 08/11/08 15:02:25 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Metaprogramming/SequentialComposer.cs
r466 r496 46 46 foreach(StringData opName in parts) { 47 47 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); 51 50 } 52 51 combOp.OperatorGraph.AddOperator(seq);
Note: See TracChangeset
for help on using the changeset viewer.