Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursAnalyzer.cs
r12012 r13368 38 38 /// </summary> 39 39 [Item("BestAverageWorstCapaciatatedVRPToursAnalyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 40 [StorableClass ]40 [StorableClass("5C536E1C-4178-457E-8F01-E192C4E942B7")] 41 41 public sealed class BestAverageWorstCapaciatatedVRPToursAnalyzer : AlgorithmOperator, IAnalyzer, IHomogenousCapacitatedOperator { 42 42 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursCalculator.cs
r12012 r13368 29 29 namespace HeuristicLab.Problems.VehicleRouting { 30 30 [Item("BestAverageWorstCapacitatedVRPToursCalculator", "An operator which calculates the current best, average and worst properties of VRP tours in the scope tree.")] 31 [StorableClass ]31 [StorableClass("2735C563-F3FC-440C-A140-84C09CE43EAD")] 32 32 public sealed class BestAverageWorstCapacitatedVRPToursCalculator : SingleSuccessorOperator { 33 33 public ScopeTreeLookupParameter<DoubleValue> OverloadParameter { -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestCapacitatedVRPToursMemorizer.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 30 30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [Item("BestCapacitatedVRPToursMemorizer", "An operator that updates the best VRP tour found so far in the scope three.")] 32 [StorableClass ]32 [StorableClass("F790D334-ADD9-481E-AF5A-1F9FE91B6C28")] 33 33 public class BestCapacitatedVRPToursMemorizer : SingleSuccessorOperator { 34 34 public ScopeTreeLookupParameter<DoubleValue> OverloadParameter {
Note: See TracChangeset
for help on using the changeset viewer.