Changeset 17711 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba
- 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/Alba/AlbaEncoding.cs
r17704 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("AlbaEncoding", "Represents the encoding for Alba encoded solutions.")] 34 33 [StorableType("9ff9f959-31d2-44e5-8a5e-b122220535c2")] 35 public class AlbaEncoding : Encoding, IVRPEncoding {34 public sealed class AlbaEncoding : 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(IAlbaOperator).Assembly; 64 63 var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, assembly, true, false, false);
Note: See TracChangeset
for help on using the changeset viewer.