- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IMultiVRPOperator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Core; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("4ED07F1F-AC5F-4771-8916-AF7DD576C581")] 26 28 interface IMultiVRPOperator : IVRPOperator { 27 29 void SetOperators(IEnumerable<IOperator> operators); -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPCreator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("36C4F904-7B59-4C09-81C4-BC07D9ABC496")] 26 28 public interface IVRPCreator : IVRPOperator, ISolutionCreator { 27 29 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPCrossover.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("FFAE16E2-265C-464E-9903-24154F6B0628")] 26 28 public interface IVRPCrossover : IVRPOperator, ICrossover { 27 29 ILookupParameter<ItemArray<IVRPEncoding>> ParentsParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEncoding.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Core; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("A8B95552-3A3D-43B3-95C3-B04602AEACF5")] 26 28 public interface IVRPEncoding : IItem { 27 29 List<Tour> GetTours(); -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEvaluator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Optimization; 24 24 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 28 [StorableType("C3423687-3CBE-41E4-9227-FF4F1D6912E1")] 27 29 public interface IVRPEvaluator : IVRPOperator, ISingleObjectiveEvaluator { 28 30 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPLocalSearchManipulator.cs
r15584 r17097 1 #region License Information 1 using HEAL.Attic; 2 #region License Information 2 3 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 5 * 5 6 * This file is part of HeuristicLab. … … 22 23 23 24 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 25 [StorableType("5C793BBC-0189-4176-BFDC-5E5B01A8FA5E")] 24 26 public interface IVRPLocalSearchManipulator : IVRPManipulator { 25 27 } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("AC249F6E-B3A0-49C2-A582-811C132B4DAE")] 26 28 public interface IVRPManipulator : IVRPOperator, IManipulator { 27 29 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPMoveOperator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("9425CBF4-8F21-43FC-9AAB-52E263B2BB12")] 26 28 public interface IVRPMoveOperator : IVRPOperator, IMoveOperator { 27 29 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPMultiNeighborhoodShakingOperator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [StorableType("48732EFD-AB16-4C96-A720-FB6CAEA0133D")] 26 28 public interface IVRPMultiNeighborhoodShakingOperator : IMultiNeighborhoodShakingOperator, IVRPOperator { 27 29 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPOperator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [StorableType("5B416762-7CD7-408F-8AF2-232F86CEB41F")] 25 27 public interface IVRPOperator : IItem { 26 28 ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; } -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPProblemInstance.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 27 using HEAL.Attic; 27 28 28 29 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 30 [StorableType("B8E231D0-6BA9-4DCF-9585-95E46B280B47")] 29 31 public interface IVRPProblemInstance : IParameterizedNamedItem { 30 32 IVRPEvaluator SolutionEvaluator { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.