Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedOperator.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [StorableType("34081882-6cb7-4dd7-896b-d87c2c4be5be")] 24 26 public interface IHeterogenousCapacitatedOperator : IHomogenousCapacitatedOperator { 25 27 } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedProblemInstance.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Data; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("9a48c164-7d52-49c1-a11e-6b633c0f63e1")] 25 27 public interface IHeterogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 26 28 DoubleArray Capacity { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedOperator.cs
r14185 r14929 1 #region License Information 1 using HeuristicLab.Persistence; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 22 23 23 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [StorableType("bdd8ee3b-a6d8-4548-973e-4b229556b3b3")] 24 26 public interface IHomogenousCapacitatedOperator : ICapacitatedOperator { 25 27 } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedProblemInstance.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Data; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("668c8756-7f59-4c30-b707-409b0166bef7")] 25 27 public interface IHomogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 26 28 DoubleValue Capacity { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedOperator.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [StorableType("fdc8d805-d1ee-4987-a9a0-125dd454083f")] 25 27 public interface ICapacitatedOperator : IVRPOperator { 26 28 } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedProblemInstance.cs
r14185 r14929 22 22 using HeuristicLab.Data; 23 23 using HeuristicLab.Problems.VehicleRouting.Interfaces; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Variants { 27 [StorableType("3ec42535-c4d2-4e55-8bcc-b3c553d8d9cd")] 26 28 public interface ICapacitatedProblemInstance : IVRPProblemInstance { 27 29 DoubleValue OverloadPenalty { get; }
Note: See TracChangeset
for help on using the changeset viewer.