Changeset 5492 for branches/SuccessProgressAnalysis/HeuristicLab.Operators
- Timestamp:
- 02/16/11 14:50:59 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SuccessProgressAnalysis/HeuristicLab.Operators/3.3/StochasticMultiBranch.cs
r5379 r5492 153 153 OperationCollection next = new OperationCollection(base.Apply()); 154 154 if (successor != null) { 155 ExecutedOperatorParameter.ActualValue = new StringValue(successor.GetType().Name); 155 if(ReportExecutedOperatorParameter.Value.Value) 156 ExecutedOperatorParameter.ActualValue = new StringValue(successor.Name); 156 157 157 158 if (CreateChildOperation) … … 159 160 else next.Insert(0, ExecutionContext.CreateOperation(successor)); 160 161 } else { 161 ExecutedOperatorParameter.ActualValue = new StringValue(""); 162 if (ReportExecutedOperatorParameter.Value.Value) 163 ExecutedOperatorParameter.ActualValue = new StringValue(""); 162 164 } 163 165 return next;
Note: See TracChangeset
for help on using the changeset viewer.