- Timestamp:
- 08/07/08 09:12:59 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators.Metaprogramming/SequentialComposer.cs
r465 r466 45 45 46 46 foreach(StringData opName in parts) { 47 IOperatorGraph subOpGraph = scope.GetVariableValue<IOperatorGraph>(opName.Data, true);48 foreach(IOperator op in subOp Graph.Operators)47 CombinedOperator subOp = scope.GetVariableValue<CombinedOperator>(opName.Data, true); 48 foreach(IOperator op in subOp.OperatorGraph.Operators) 49 49 combOp.OperatorGraph.AddOperator(op); 50 seq.AddSubOperator(subOp Graph.InitialOperator);50 seq.AddSubOperator(subOp.OperatorGraph.InitialOperator); 51 51 } 52 52 combOp.OperatorGraph.AddOperator(seq);
Note: See TracChangeset
for help on using the changeset viewer.