Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.VehicleRouting

  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IMultiVRPOperator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using System.Collections.Generic;
    2323using HeuristicLab.Core;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("4ED07F1F-AC5F-4771-8916-AF7DD576C581")]
    2628  interface IMultiVRPOperator : IVRPOperator {
    2729    void SetOperators(IEnumerable<IOperator> operators);
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPCreator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Optimization;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("36C4F904-7B59-4C09-81C4-BC07D9ABC496")]
    2628  public interface IVRPCreator : IVRPOperator, ISolutionCreator {
    2729    ILookupParameter<IVRPEncoding> VRPToursParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPCrossover.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Optimization;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("FFAE16E2-265C-464E-9903-24154F6B0628")]
    2628  public interface IVRPCrossover : IVRPOperator, ICrossover {
    2729    ILookupParameter<ItemArray<IVRPEncoding>> ParentsParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEncoding.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using System.Collections.Generic;
    2323using HeuristicLab.Core;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("A8B95552-3A3D-43B3-95C3-B04602AEACF5")]
    2628  public interface IVRPEncoding : IItem {
    2729    List<Tour> GetTours();
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEvaluator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Optimization;
    2424using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     28  [StorableType("C3423687-3CBE-41E4-9227-FF4F1D6912E1")]
    2729  public interface IVRPEvaluator : IVRPOperator, ISingleObjectiveEvaluator {
    2830    ILookupParameter<IVRPEncoding> VRPToursParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPLocalSearchManipulator.cs

    r15584 r17097  
    1 #region License Information
     1using HEAL.Attic;
     2#region License Information
    23/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    45 *
    56 * This file is part of HeuristicLab.
     
    2223
    2324namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     25  [StorableType("5C793BBC-0189-4176-BFDC-5E5B01A8FA5E")]
    2426  public interface IVRPLocalSearchManipulator : IVRPManipulator {
    2527  }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPManipulator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Optimization;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("AC249F6E-B3A0-49C2-A582-811C132B4DAE")]
    2628  public interface IVRPManipulator : IVRPOperator, IManipulator {
    2729    ILookupParameter<IVRPEncoding> VRPToursParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPMoveOperator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Optimization;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("9425CBF4-8F21-43FC-9AAB-52E263B2BB12")]
    2628  public interface IVRPMoveOperator : IVRPOperator, IMoveOperator {
    2729    ILookupParameter<IVRPEncoding> VRPToursParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPMultiNeighborhoodShakingOperator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Optimization;
     24using HEAL.Attic;
    2425
    2526namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     27  [StorableType("48732EFD-AB16-4C96-A720-FB6CAEA0133D")]
    2628  public interface IVRPMultiNeighborhoodShakingOperator : IMultiNeighborhoodShakingOperator, IVRPOperator {
    2729    ILookupParameter<IVRPEncoding> VRPToursParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPOperator.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using HeuristicLab.Core;
     23using HEAL.Attic;
    2324
    2425namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     26  [StorableType("5B416762-7CD7-408F-8AF2-232F86CEB41F")]
    2527  public interface IVRPOperator : IItem {
    2628    ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; }
  • stable/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPProblemInstance.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525using HeuristicLab.Data;
    2626using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.Problems.VehicleRouting.Interfaces {
     30  [StorableType("B8E231D0-6BA9-4DCF-9585-95E46B280B47")]
    2931  public interface IVRPProblemInstance : IParameterizedNamedItem {
    3032    IVRPEvaluator SolutionEvaluator { get; set; }
Note: See TracChangeset for help on using the changeset viewer.