Changeset 15018 for branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Crossovers
- Timestamp:
- 06/01/17 11:29:49 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Crossovers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Crossovers/PotvinCrossover.cs
r14927 r15018 43 43 44 44 [StorableConstructor] 45 protected PotvinCrossover( booldeserializing) : base(deserializing) { }45 protected PotvinCrossover(StorableConstructorFlag deserializing) : base(deserializing) { } 46 46 47 47 public PotvinCrossover() { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Crossovers/PotvinInsertionBasedCrossover.cs
r14927 r15018 39 39 40 40 [StorableConstructor] 41 private PotvinInsertionBasedCrossover( booldeserializing) : base(deserializing) { }41 private PotvinInsertionBasedCrossover(StorableConstructorFlag deserializing) : base(deserializing) { } 42 42 private PotvinInsertionBasedCrossover(PotvinInsertionBasedCrossover original, Cloner cloner) 43 43 : base(original, cloner) { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Crossovers/PotvinRouteBasedCrossover.cs
r14927 r15018 31 31 public sealed class PotvinRouteBasedCrossover : PotvinCrossover { 32 32 [StorableConstructor] 33 private PotvinRouteBasedCrossover( booldeserializing) : base(deserializing) { }33 private PotvinRouteBasedCrossover(StorableConstructorFlag deserializing) : base(deserializing) { } 34 34 35 35 public PotvinRouteBasedCrossover() -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Crossovers/PotvinSequenceBasedCrossover.cs
r14927 r15018 30 30 public sealed class PotvinSequenceBasedCrossover : PotvinCrossover { 31 31 [StorableConstructor] 32 private PotvinSequenceBasedCrossover( booldeserializing) : base(deserializing) { }32 private PotvinSequenceBasedCrossover(StorableConstructorFlag deserializing) : base(deserializing) { } 33 33 34 34 public PotvinSequenceBasedCrossover()
Note: See TracChangeset
for help on using the changeset viewer.