Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluation.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.ProblemInstances { 25 [StorableType("4dcef89b-e83e-4000-84be-d61ecc864016")] 24 26 public class CVRPInsertionInfo : StopInsertionInfo { 25 27 private double spareCapacity; … … 35 37 } 36 38 39 [StorableType("b341fad8-8a56-4917-9ee8-5452bdb49a02")] 37 40 public class CVRPEvaluation : VRPEvaluation { 38 41 public double Overload { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluation.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 26 [StorableType("6831c4f5-0409-43e3-a2cc-22d146b8c27f")] 25 27 public class CVRPPDTWInsertionInfo : CVRPTWInsertionInfo { 26 28 private List<int> visited; … … 44 46 } 45 47 48 [StorableType("cc1ccf5e-0adc-4c9e-a7fe-55cbab6cb3c5")] 46 49 public class CVRPPDTWEvaluation : CVRPTWEvaluation { 47 50 public int PickupViolations { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluation.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.ProblemInstances { 25 [StorableType("3b2672a8-0ff5-4c95-b39e-829aaa09651b")] 24 26 public class CVRPTWInsertionInfo : CVRPInsertionInfo { 25 27 private double tourStartTime; … … 63 65 } 64 66 67 [StorableType("37fee5c4-1752-48b5-b21d-d5ea15f7757f")] 65 68 public class CVRPTWEvaluation : CVRPEvaluation { 66 69 public double Tardiness { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.