- Timestamp:
- 03/15/11 09:51:22 (14 years ago)
- Location:
- branches/SuccessProgressAnalysis/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SuccessProgressAnalysis/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Crossovers/BiasedMultiVRPSolutionCrossover.cs
r5493 r5682 156 156 OperationCollection next = new OperationCollection(successorOp); 157 157 if (successor != null) { 158 ExecutedOperatorParameter.ActualValue = new StringValue(successor.GetType().Name);158 SelectedOperatorParameter.ActualValue = new StringValue(successor.GetType().Name); 159 159 160 160 if (CreateChildOperation) … … 162 162 else next.Insert(0, ExecutionContext.CreateOperation(successor)); 163 163 } else { 164 ExecutedOperatorParameter.ActualValue = new StringValue("");164 SelectedOperatorParameter.ActualValue = new StringValue(""); 165 165 } 166 166 -
branches/SuccessProgressAnalysis/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/Manipulators/BiasedMultiVRPSolutionManipulator.cs
r5493 r5682 156 156 OperationCollection next = new OperationCollection(successorOp); 157 157 if (successor != null) { 158 ExecutedOperatorParameter.ActualValue = new StringValue(successor.GetType().Name);158 SelectedOperatorParameter.ActualValue = new StringValue(successor.GetType().Name); 159 159 160 160 if (CreateChildOperation) … … 162 162 else next.Insert(0, ExecutionContext.CreateOperation(successor)); 163 163 } else { 164 ExecutedOperatorParameter.ActualValue = new StringValue("");164 SelectedOperatorParameter.ActualValue = new StringValue(""); 165 165 } 166 166
Note: See TracChangeset
for help on using the changeset viewer.