- Timestamp:
- 02/25/14 14:00:47 (11 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10149,10231,10261,10291-10292,10295,10298
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Operators/3.3/StochasticMultiBranch.cs
r9456 r10507 132 132 /// or all selected operators have zero probabitlity.</exception> 133 133 /// <returns>A new operation with the operator that was selected followed by the current operator's successor.</returns> 134 public override IOperation Apply() {134 public override IOperation InstrumentedApply() { 135 135 IRandom random = RandomParameter.ActualValue; 136 136 DoubleArray probabilities = ProbabilitiesParameter.ActualValue; … … 156 156 } 157 157 } 158 OperationCollection next = new OperationCollection(base. Apply());158 OperationCollection next = new OperationCollection(base.InstrumentedApply()); 159 159 if (successor != null) { 160 160 if (TraceSelectedOperatorParameter.Value.Value)
Note: See TracChangeset
for help on using the changeset viewer.