Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Moves/OneBitflipMove/OneBitflipMoveGenerator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Moves/OneBitflipMove/OneBitflipMoveGenerator.cs
r4722 r5177 54 54 } 55 55 56 public override IOperation Apply( ) {56 public override IOperation Apply(IExecutionContext context) { 57 57 BinaryVector v = BinaryVectorParameter.ActualValue; 58 58 OneBitflipMove[] moves = GenerateMoves(v); … … 63 63 } 64 64 CurrentScopeParameter.ActualValue.SubScopes.AddRange(moveScopes); 65 return base.Apply( );65 return base.Apply(context); 66 66 } 67 67
Note: See TracChangeset
for help on using the changeset viewer.