Changeset 17711 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/MultiVRPEncoding.cs
- Timestamp:
- 08/03/20 18:06:16 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/MultiVRPEncoding.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("MultiVRPEncoding", "Represents the combination of all encodings from the VRP.")] 34 33 [StorableType("9ff9f959-31d2-44e5-8a5e-b122220535c2")] 35 public class MultiVRPEncoding : Encoding, IVRPEncoding {34 public class MultiVRPEncoding : VRPEncoding { 36 35 37 36 [StorableConstructor] … … 58 57 }; 59 58 } 60 pr ivate void DiscoverOperators() {59 protected override void DiscoverOperators() { 61 60 var assembly = typeof(IAlbaOperator).Assembly; 62 61 var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, assembly, true, false, false);
Note: See TracChangeset
for help on using the changeset viewer.