- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/CVRPInterpreter.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.Data; 23 23 using HeuristicLab.Problems.Instances; 24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;25 24 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 26 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 using System;28 26 29 27 namespace HeuristicLab.Problems.VehicleRouting.Interpreters { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/CVRPTWInterpreter.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.Data; 23 23 using HeuristicLab.Problems.Instances; 24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;25 24 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 26 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 using System;28 26 29 27 namespace HeuristicLab.Problems.VehicleRouting.Interpreters { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/IVRPDataInterpreter.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.Problems.Instances; 23 23 using HeuristicLab.Problems.VehicleRouting.Interfaces; 24 using System;25 24 26 25 namespace HeuristicLab.Problems.VehicleRouting.Interpreters { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/MDCVRPInterpreter.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.Data; 23 23 using HeuristicLab.Problems.Instances; 24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;25 24 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 26 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 using System;28 26 29 27 namespace HeuristicLab.Problems.VehicleRouting.Interpreters { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/MDCVRPTWInterpreter.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.Data; 23 23 using HeuristicLab.Problems.Instances; 24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;25 24 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 26 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 using System;28 26 29 27 namespace HeuristicLab.Problems.VehicleRouting.Interpreters { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/PDPTWInterpreter.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.Data; 23 23 using HeuristicLab.Problems.Instances; 24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;25 24 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; 26 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 using System;28 26 29 27 namespace HeuristicLab.Problems.VehicleRouting.Interpreters { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/VRPInterpreter.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 System.IO; 23 using HeuristicLab.Data;24 23 using HeuristicLab.Problems.Instances; 25 24 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin; 26 using HeuristicLab.Problems.VehicleRouting.ProblemInstances;27 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 28 using System;29 26 30 27 namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
Note: See TracChangeset
for help on using the changeset viewer.