Changeset 17711 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/PotvinEncoding.cs
- Timestamp:
- 08/03/20 18:06:16 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/PotvinEncoding.cs
r17706 r17711 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using HeuristicLab.Optimization;29 28 using HeuristicLab.PluginInfrastructure; 30 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 33 32 [Item("Potvin Encoding", "Represents the Potvin encoding for Potvin encoded solutions.")] 34 33 [StorableType("9ff9f959-31d2-44e5-8a5e-b122220535c2")] 35 public class PotvinEncoding : Encoding, IVRPEncoding {34 public class PotvinEncoding : VRPEncoding { 36 35 37 36 [StorableConstructor] … … 60 59 }; 61 60 } 62 pr ivate void DiscoverOperators() {61 protected override void DiscoverOperators() { 63 62 var assembly = typeof(IPotvinOperator).Assembly; 64 63 var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, assembly, true, false, false);
Note: See TracChangeset
for help on using the changeset viewer.