Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (6 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Problems.VehicleRouting

  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/CVRPInterpreter.cs

    r15583 r16565  
    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.Data;
    2323using HeuristicLab.Problems.Instances;
    24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    2524using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2625using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using System;
    2826
    2927namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/CVRPTWInterpreter.cs

    r15583 r16565  
    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.Data;
    2323using HeuristicLab.Problems.Instances;
    24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    2524using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2625using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using System;
    2826
    2927namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/IVRPDataInterpreter.cs

    r15583 r16565  
    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.Problems.Instances;
    2323using HeuristicLab.Problems.VehicleRouting.Interfaces;
    24 using System;
    2524
    2625namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/MDCVRPInterpreter.cs

    r15583 r16565  
    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.Data;
    2323using HeuristicLab.Problems.Instances;
    24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    2524using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2625using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using System;
    2826
    2927namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/MDCVRPTWInterpreter.cs

    r15583 r16565  
    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.Data;
    2323using HeuristicLab.Problems.Instances;
    24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    2524using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2625using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using System;
    2826
    2927namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/PDPTWInterpreter.cs

    r15583 r16565  
    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.Data;
    2323using HeuristicLab.Problems.Instances;
    24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    2524using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2625using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using System;
    2826
    2927namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
  • trunk/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/VRPInterpreter.cs

    r15583 r16565  
    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 System.IO;
    23 using HeuristicLab.Data;
    2423using HeuristicLab.Problems.Instances;
    2524using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
    26 using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
    2725using HeuristicLab.Problems.VehicleRouting.Interfaces;
    28 using System;
    2926
    3027namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
Note: See TracChangeset for help on using the changeset viewer.