From 328b5cc66ec617575a7d6b85e559e6e182808570 Mon Sep 17 00:00:00 2001 From: legrand Date: Fri, 7 Dec 2007 15:42:40 +0000 Subject: [PATCH] added antonio atorre's work git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@834 331e1502-861f-0410-8da2-ba01fb791d7f --- .../routing/vrptw/CMakeLists.txt | 45 + .../trunk/combinatorial/routing/vrptw/INSTALL | 28 + .../trunk/combinatorial/routing/vrptw/README | 92 ++ .../routing/vrptw/application/CMakeLists.txt | 68 + .../routing/vrptw/application/CVRP-TW.cpp | 634 ++++++++ .../routing/vrptw/application/CVRP-TW.params | 54 + .../application/instances/solomon/c101.dat | 101 ++ .../application/instances/solomon/c102.dat | 101 ++ .../application/instances/solomon/c103.dat | 101 ++ .../application/instances/solomon/c104.dat | 101 ++ .../application/instances/solomon/c105.dat | 101 ++ .../application/instances/solomon/c106.dat | 101 ++ .../application/instances/solomon/c107.dat | 101 ++ .../application/instances/solomon/c108.dat | 101 ++ .../application/instances/solomon/c109.dat | 101 ++ .../application/instances/solomon/c201.dat | 101 ++ .../application/instances/solomon/c202.dat | 101 ++ .../application/instances/solomon/c203.dat | 101 ++ .../application/instances/solomon/c204.dat | 101 ++ .../application/instances/solomon/c205.dat | 101 ++ .../application/instances/solomon/c206.dat | 101 ++ .../application/instances/solomon/c207.dat | 101 ++ .../application/instances/solomon/c208.dat | 101 ++ .../instances/solomon/capacities.dat | 9 + .../application/instances/solomon/r101.dat | 101 ++ .../application/instances/solomon/r102.dat | 101 ++ .../application/instances/solomon/r103.dat | 101 ++ .../application/instances/solomon/r104.dat | 101 ++ .../application/instances/solomon/r105.dat | 101 ++ .../application/instances/solomon/r106.dat | 101 ++ .../application/instances/solomon/r107.dat | 101 ++ .../application/instances/solomon/r108.dat | 101 ++ .../application/instances/solomon/r109.dat | 101 ++ .../application/instances/solomon/r110.dat | 101 ++ .../application/instances/solomon/r111.dat | 101 ++ .../application/instances/solomon/r112.dat | 101 ++ .../application/instances/solomon/r201.dat | 101 ++ .../application/instances/solomon/r202.dat | 101 ++ .../application/instances/solomon/r203.dat | 101 ++ .../application/instances/solomon/r204.dat | 101 ++ .../application/instances/solomon/r205.dat | 101 ++ .../application/instances/solomon/r206.dat | 101 ++ .../application/instances/solomon/r207.dat | 101 ++ .../application/instances/solomon/r208.dat | 101 ++ .../application/instances/solomon/r209.dat | 101 ++ .../application/instances/solomon/r210.dat | 101 ++ .../application/instances/solomon/r211.dat | 101 ++ .../application/instances/solomon/rc101.dat | 101 ++ .../application/instances/solomon/rc102.dat | 101 ++ .../application/instances/solomon/rc103.dat | 101 ++ .../application/instances/solomon/rc104.dat | 101 ++ .../application/instances/solomon/rc105.dat | 101 ++ .../application/instances/solomon/rc106.dat | 101 ++ .../application/instances/solomon/rc107.dat | 101 ++ .../application/instances/solomon/rc108.dat | 101 ++ .../application/instances/solomon/rc201.dat | 101 ++ .../application/instances/solomon/rc202.dat | 101 ++ .../application/instances/solomon/rc203.dat | 101 ++ .../application/instances/solomon/rc204.dat | 101 ++ .../application/instances/solomon/rc205.dat | 101 ++ .../application/instances/solomon/rc206.dat | 101 ++ .../application/instances/solomon/rc207.dat | 101 ++ .../application/instances/solomon/rc208.dat | 101 ++ .../routing/vrptw/doc/CMakeLists.txt | 26 + .../routing/vrptw/doc/doxyfile.cmake | 1269 +++++++++++++++++ .../combinatorial/routing/vrptw/install.cmake | 50 + 66 files changed, 7931 insertions(+) create mode 100644 contribution/trunk/combinatorial/routing/vrptw/CMakeLists.txt create mode 100644 contribution/trunk/combinatorial/routing/vrptw/INSTALL create mode 100644 contribution/trunk/combinatorial/routing/vrptw/README create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/CMakeLists.txt create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.cpp create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.params create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c101.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c102.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c103.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c104.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c105.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c106.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c107.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c108.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c109.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c201.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c202.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c203.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c204.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c205.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c206.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c207.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c208.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/capacities.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r101.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r102.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r103.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r104.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r105.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r106.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r107.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r108.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r109.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r110.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r111.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r112.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r201.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r202.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r203.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r204.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r205.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r206.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r207.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r208.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r209.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r210.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r211.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc101.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc102.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc103.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc104.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc105.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc106.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc107.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc108.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc201.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc202.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc203.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc204.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc205.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc206.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc207.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc208.dat create mode 100644 contribution/trunk/combinatorial/routing/vrptw/doc/CMakeLists.txt create mode 100644 contribution/trunk/combinatorial/routing/vrptw/doc/doxyfile.cmake create mode 100644 contribution/trunk/combinatorial/routing/vrptw/install.cmake diff --git a/contribution/trunk/combinatorial/routing/vrptw/CMakeLists.txt b/contribution/trunk/combinatorial/routing/vrptw/CMakeLists.txt new file mode 100644 index 000000000..bcb837eb6 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/CMakeLists.txt @@ -0,0 +1,45 @@ + +###################################################################################### +### 0) Include the install configuration file where are defined the main variables +###################################################################################### + +INCLUDE(${CMAKE_SOURCE_DIR}/install.cmake) + +###################################################################################### + + +###################################################################################### +### 1) Set your application properties +###################################################################################### + +# Define the project name +PROJECT(CVRP-TW) + +SET(PACKAGE_NAME "CVRP-TW" CACHE STRING "Package name" FORCE) +SET(PACKAGE_VERSION "1.0" CACHE STRING "Package version" FORCE) +###################################################################################### + + +###################################################################################### +### 2) Find the required modukes +###################################################################################### + +# Need to find Doxygen to generate the documentation +INCLUDE(FindDoxygen) + +###################################################################################### + + +###################################################################################### +### 3) Link the librairies for your executable +###################################################################################### + +SUBDIRS(application doc src) + +###################################################################################### + + + + + + diff --git a/contribution/trunk/combinatorial/routing/vrptw/INSTALL b/contribution/trunk/combinatorial/routing/vrptw/INSTALL new file mode 100644 index 000000000..965b3beb3 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/INSTALL @@ -0,0 +1,28 @@ + +========================================================================================== + INSTALL THE CVRP-TW PACKAGE +========================================================================================== + +The basic installation procedure goes the following: + +To compile the cvrp-tw package in the default directory, +go to cvrptw/build/ and run: + > cmake ../ + > make + // for an easy-use of the provided lessons + > make install + // optional (if the documentation is not already available) + > make doc + +To clean everything, simply run + > make clean + + +========================================================================================== + CONTACT +========================================================================================== + +For any question or for help, please write us at: paradiseo-help@lists.gforge.inria.fr. + + +========================================================================================== \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/README b/contribution/trunk/combinatorial/routing/vrptw/README new file mode 100644 index 000000000..039b51dc7 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/README @@ -0,0 +1,92 @@ +========================================================================================== + INFORMATION +========================================================================================== + +PARADISEO (PARallel and DIStributed Evolving Objects) is a white-box object-oriented +framework dedicated to the flexible design of metaheursitics. + +This package contains an implementation of a Genetic Algorithm solving the CVRP-TW problem. + +According to Wikipedia*, we can define the CVRP-TW as: + +"The capacitated vehicle routing problem with time windows or CVRP-TW is a combinatorial +optimization problem seeking to service a number of customers with a fleet of vehicles +where the vehicles have a mimited capacity and the delivery locations have time windows +within which the deliveries (or visits) must be made. Often the context is that of +delivering goods located at a central depot to customers who have placed orders for such +goods. Implicit is the goal of minimizing the cost of distributing the goods. Finding the +global minimum for the cost function, except for the smallest instances, is +computationally complex." + +*For further information, please visit: http://en.wikipedia.org/wiki/Vehicle_routing_problem + +========================================================================================== + RELEASE +========================================================================================== + +The current release of the "CVRP-TW" package is 1.0. + + +========================================================================================== + WEBSITE +========================================================================================== + +Please visit our website at http://paradiseo.gforge.inria.fr. + + +========================================================================================== + BUGS +========================================================================================== + +You can find the ParadisEO's bug tracker at: + + http://gforge.inria.fr/tracker/?atid=663&group_id=145&func=browse + + +========================================================================================== + CONTACT +========================================================================================== + +For any question or for help, please write us at: paradiseo-help@lists.gforge.inria.fr. + + +========================================================================================== + DEPENDENCIES +========================================================================================== + +ParadisEO uses EO, a templates-based, ANSI-C++ compliant evolutionary computation library. +It contains classes for almost any kind of evolutionary computation you might come up to - at +least for the ones we could think of. +EO Website: + http://eodev.sourceforge.net/. +EO is distributed under the GNU Lesser General Public License: + http://www.gnu.org/copyleft/lesser.html + + +========================================================================================== + LICENSE +========================================================================================== + + ParadisEO is governed by the CeCILL license under French law and + abiding by the rules of distribution of free software. You can use, + modify and/ or redistribute the software under the terms of the CeCILL + license as circulated by CEA, CNRS and INRIA at the following URL + "http://www.cecill.info". + + As a counterpart to the access to the source code and rights to copy, + modify and redistribute granted by the license, users are provided only + with a limited warranty and the software's author, the holder of the + economic rights, and the successive licensors have only limited liability. + + In this respect, the user's attention is drawn to the risks associated + with loading, using, modifying and/or developing or reproducing the + software by the user in light of its specific status of free software, + that may mean that it is complicated to manipulate, and that also + therefore means that it is reserved for developers and experienced + professionals having in-depth computer knowledge. Users are therefore + encouraged to load and test the software's suitability as regards their + requirements in conditions enabling the security of their systems and/or + data to be ensured and, more generally, to use and operate it in the + same conditions as regards security. + The fact that you are presently reading this means that you have had + knowledge of the CeCILL license and that you accept its terms. diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/CMakeLists.txt b/contribution/trunk/combinatorial/routing/vrptw/application/CMakeLists.txt new file mode 100644 index 000000000..c2584ed48 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/CMakeLists.txt @@ -0,0 +1,68 @@ + + +###################################################################################### +### 1) Include the sources +###################################################################################### + +INCLUDE_DIRECTORIES(${PARADISEO_EO_SRC_DIR}/src + ${CVRP-TW_SOURCE_DIR}/src) + +###################################################################################### + + +###################################################################################### +### 2) Specify where CMake can find the libraries +###################################################################################### + +# Link with the EO library directory +LINK_DIRECTORIES(${PARADISEO_EO_BIN_DIR}/lib) + +###################################################################################### + + + +###################################################################################### +### 3) Define your target: just an executable here +###################################################################################### + +ADD_EXECUTABLE(CVRP-TW CVRP-TW.cpp) + +###################################################################################### + + +###################################################################################### +### 4) Link the librairies for your executable +###################################################################################### + +# Only if you need to link libraries +TARGET_LINK_LIBRARIES(CVRP-TW eo eoutils) + +###################################################################################### + + +###################################################################################### +### 5) Copy the instances and the "param" file in the build path for an easy use. +### +### --> run the "make install" target to copy the parameter file / instances +### in the directory where you build the application +###################################################################################### + +ADD_CUSTOM_TARGET(install DEPENDS ${CVRP-TW_SOURCE_DIR}/application/CVRP-TW.params + ${CVRP-TW_SOURCE_DIR}/application/instances) +ADD_CUSTOM_COMMAND( + TARGET install + POST_BUILD + COMMAND ${CMAKE_COMMAND} + ARGS -E copy_if_different + ${CVRP-TW_SOURCE_DIR}/application/CVRP-TW.params + ${CVRP-TW_BINARY_DIR}/application) +ADD_CUSTOM_COMMAND( + TARGET install + POST_BUILD + COMMAND ${CMAKE_COMMAND} + ARGS -E copy_directory + ${CVRP-TW_SOURCE_DIR}/application/instances + ${CVRP-TW_BINARY_DIR}/application) +###################################################################################### + + diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.cpp b/contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.cpp new file mode 100644 index 000000000..104f4a19e --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.cpp @@ -0,0 +1,634 @@ +/* + * Copyright (C) DOLPHIN Project-Team, INRIA Futurs, 2006-2007 + * (C) OPAC Team, LIFL, 2002-2007 + * + * (c) Antonio LaTorre , 2007 + * + * This software is governed by the CeCILL license under French law and + * abiding by the rules of distribution of free software. You can use, + * modify and/ or redistribute the software under the terms of the CeCILL + * license as circulated by CEA, CNRS and INRIA at the following URL + * "http://www.cecill.info". + * + * As a counterpart to the access to the source code and rights to copy, + * modify and redistribute granted by the license, users are provided only + * with a limited warranty and the software's author, the holder of the + * economic rights, and the successive licensors have only limited liability. + * + * In this respect, the user's attention is drawn to the risks associated + * with loading, using, modifying and/or developing or reproducing the + * software by the user in light of its specific status of free software, + * that may mean that it is complicated to manipulate, and that also + * therefore means that it is reserved for developers and experienced + * professionals having in-depth computer knowledge. Users are therefore + * encouraged to load and test the software's suitability as regards their + * requirements in conditions enabling the security of their systems and/or + * data to be ensured and, more generally, to use and operate it in the + * same conditions as regards security. + * The fact that you are presently reading this means that you have had + * knowledge of the CeCILL license and that you accept its terms. + * + * ParadisEO WebSite : http://paradiseo.gforge.inria.fr + * Contact: paradiseo-help@lists.gforge.inria.fr + * + */ + +// Miscellaneous includes and declarations +#include +#include + +// eo general include +#include "eo" +// the real bounds (not yet in general eo include) +#include "utils/eoRealVectorBounds.h" + +// Include here whatever specific files for your representation. +// Basically, this should include at least the following: + +/** definition of representation: + * class eoVRP MUST derive from EO for some fitness + */ +#include "eoVRP.h" + +/** definition of initilizqtion: + * class eoVRPInit MUST derive from eoInit + */ +#include "eoVRPInit.h" + +/** definition of evaluation: + * class eoVRPEvalFunc MUST derive from eoEvalFunc + * and should test for validity before doing any computation + * see tutorial/Templates/evalFunc.tmpl + */ +#include "eoVRPEvalFunc.h" + +/** definitions of operators: write as many classes as types of operators + * and include them here. In this simple example, + * one crossover (2->2) and one mutation (1->1) operators are used + */ +#include "eoVRPQuadCrossover.h" +#include "eoVRPMutation.h" + +/* And (possibly) your personal statistics */ +#include "eoVRPStat.h" + +#include "eoVRPUtils.h" + + +/* ********************************************************************************** + ********************************************************************************** */ + +// Use existing modules to define representation independent routines + +// How to initialize the population +// It IS representation independent if an eoInit is given +#include "do/make_pop.h" + +// The stopping criterion +#include "do/make_continue.h" + +// Output (stats, population dumps, ...) +#include "do/make_checkpoint.h" + +// Simply call to the algo. Stays there for consistency reasons +// No template for that one +#include "do/make_run.h" + +// The instanciating fitnesses +#include + +// Checks for help demand, and writes the status file +// and make_help; in libutils + +void make_help (eoParser& _parser); + + +/* ********************************************************************************** + ********************************************************************************** */ + +/* + * This function builds the algorithm (i.e. selection and replacement) + * from existing continue (or checkpoint) and operators + * + * It uses a parser (to get user parameters) and a state (to store the memory) + * the last argument is an individual, needed for 2 reasons + * it disambiguates the call after instanciations + * some operator might need some private information about the indis + * + * This is why the template is the complete EOT even though only the fitness + * is actually templatized here +*/ + + +eoAlgo& make_algo_scalar_transform (eoParser& _parser, eoState& _state, eoEvalFunc& _eval, eoCheckPoint& _checkpoint, eoTransform& _transform, eoDistance* _dist = NULL) { + + // the selection : help and comment depend on whether or not a distance is passed + std::string comment; + + if (_dist == NULL) + comment = "Selection: DetTour(T), StochTour(t), Roulette, Ranking(p,e) or Sequential(ordered/unordered)"; + else + comment = "Selection: DetTour(T), StochTour(t), Roulette, Ranking(p,e), Sharing(sigma_share) or Sequential(ordered/unordered)"; + + eoValueParam& selectionParam = _parser.createParam (eoParamParamType ("DetTour(2)"), "selection", comment, 'S', "Evolution Engine"); + + eoParamParamType& ppSelect = selectionParam.value (); // std::pair > + + eoSelectOne* selectOne; + + if (ppSelect.first == std::string("DetTour")) { + + unsigned detSize; + + if (!ppSelect.second.size ()) { // no parameter added + + std::cerr << "WARNING, no parameter passed to DetTour, using 2" << std::endl; + detSize = 2; + // put back 2 in parameter for consistency (and status file) + ppSelect.second.push_back (std::string ("2")); + + } + else // parameter passed by user as DetTour(T) + detSize = atoi (ppSelect.second [0].c_str ()); + + selectOne = new eoDetTournamentSelect (detSize); + + } + else if (ppSelect.first == std::string ("Sharing")) { + + double nicheSize; + + if (!ppSelect.second.size ()) { // no parameter added + + std::cerr << "WARNING, no parameter passed to Sharing, using 0.5" << std::endl; + nicheSize = 0.5; + // put back 2 in parameter for consistency (and status file) + ppSelect.second.push_back (std::string ("0.5")); + + } + else // parameter passed by user as DetTour(T) + nicheSize = atof (ppSelect.second [0].c_str ()); + + if (_dist == NULL) // no distance + throw std::runtime_error ("You didn't specify a distance when calling make_algo_scalar and using sharing"); + + selectOne = new eoSharingSelect (nicheSize, *_dist); + + } + else if (ppSelect.first == std::string ("StochTour")) { + + double p; + + if (!ppSelect.second.size ()) { // no parameter added + + std::cerr << "WARNING, no parameter passed to StochTour, using 1" << std::endl; + p = 1; + // put back p in parameter for consistency (and status file) + ppSelect.second.push_back (std::string ("1")); + + } + else // parameter passed by user as DetTour(T) + p = atof (ppSelect.second [0].c_str ()); + + selectOne = new eoStochTournamentSelect (p); + + } + else if (ppSelect.first == std::string ("Ranking")) { + + double p,e; + + if (ppSelect.second.size () == 2) { // 2 parameters: pressure and exponent + + p = atof (ppSelect.second [0].c_str ()); + e = atof (ppSelect.second [1].c_str ()); + + } + else if (ppSelect.second.size () == 1) { // 1 parameter: pressure + + std::cerr << "WARNING, no exponent to Ranking, using 1" << std::endl; + e = 1; + ppSelect.second.push_back (std::string ("1")); + p = atof (ppSelect.second [0].c_str ()); + + } + else { // no parameters ... or garbage + + std::cerr << "WARNING, no parameter to Ranking, using (2,1)" << std::endl; + p = 2; + e = 1; + // put back in parameter for consistency (and status file) + ppSelect.second.resize (2); // just in case + ppSelect.second [0] = (std::string ("2")); + ppSelect.second [1] = (std::string ("1")); + + } + + // check for authorized values + // pressure in (0,1] + if ((p <= 1) || (p > 2)) { + + std::cerr << "WARNING, selective pressure must be in (0,1] in Ranking, using 2\n"; + p = 2; + ppSelect.second [0] = (std::string ("2")); + + } + + // exponent >0 + if (e <= 0) { + + std::cerr << "WARNING, exponent must be positive in Ranking, using 1\n"; + e = 1; + ppSelect.second [1] = (std::string ("1")); + + } + + // now we're OK + eoPerf2Worth& p2w = _state.storeFunctor (new eoRanking (p,e)); + selectOne = new eoRouletteWorthSelect (p2w); + + } + else if (ppSelect.first == std::string ("Sequential")) { // one after the other + + bool b; + + if (ppSelect.second.size () == 0) { // no argument -> default = ordered + + b = true; + // put back in parameter for consistency (and status file) + ppSelect.second.push_back (std::string ("ordered")); + + } + else + b = !(ppSelect.second [0] == std::string ("unordered")); + + selectOne = new eoSequentialSelect (b); + + } + else if (ppSelect.first == std::string ("Roulette")) { // no argument (yet) + + selectOne = new eoProportionalSelect ; + + } + else if (ppSelect.first == std::string ("Random")) { // no argument + + selectOne = new eoRandomSelect; + + } + else { + + std::string stmp = std::string ("Invalid selection: ") + ppSelect.first; + throw std::runtime_error (stmp.c_str ()); + + } + + _state.storeFunctor (selectOne); + + // Modified from original + eoSelectPerc* select = new eoSelectPerc (*selectOne); + _state.storeFunctor (select); + + // the number of offspring + eoValueParam& offspringRateParam = _parser.createParam (eoHowMany (1.0), "nbOffspring", "Nb of offspring (percentage or absolute)", 'O', "Evolution Engine"); + + // the replacement + eoValueParam& replacementParam = _parser.createParam (eoParamParamType ("Comma"), "replacement", "Replacement: Comma, Plus or EPTour(T), SSGAWorst, SSGADet(T), SSGAStoch(t)", 'R', "Evolution Engine"); + + eoParamParamType& ppReplace = replacementParam.value (); // std::pair > + + eoReplacement* replace; + + if (ppReplace.first == std::string ("Comma")) { // Comma == generational + + replace = new eoCommaReplacement; + + } + else if (ppReplace.first == std::string ("Plus")) { + + replace = new eoPlusReplacement; + + } + else if (ppReplace.first == std::string ("EPTour")) { + + unsigned detSize; + + if (!ppReplace.second.size ()) { // no parameter added + + std::cerr << "WARNING, no parameter passed to EPTour, using 6" << std::endl; + detSize = 6; + // put back in parameter for consistency (and status file) + ppReplace.second.push_back (std::string ("6")); + + } + else // parameter passed by user as EPTour(T) + detSize = atoi (ppSelect.second [0].c_str ()); + + replace = new eoEPReplacement (detSize); + + } + else if (ppReplace.first == std::string ("SSGAWorst")) { + + replace = new eoSSGAWorseReplacement; + + } + else if (ppReplace.first == std::string ("SSGADet")) { + + unsigned detSize; + + if (!ppReplace.second.size ()) { // no parameter added + + std::cerr << "WARNING, no parameter passed to SSGADet, using 2" << std::endl; + detSize = 2; + // put back in parameter for consistency (and status file) + ppReplace.second.push_back (std::string ("2")); + + } + else // parameter passed by user as SSGADet(T) + detSize = atoi (ppSelect.second [0].c_str ()); + + replace = new eoSSGADetTournamentReplacement (detSize); + + } + else if (ppReplace.first == std::string ("SSGAStoch")) { + + double p; + + if (!ppReplace.second.size ()) { // no parameter added + + std::cerr << "WARNING, no parameter passed to SSGAStoch, using 1" << std::endl; + p = 1; + // put back in parameter for consistency (and status file) + ppReplace.second.push_back (std::string ("1")); + + } + else // parameter passed by user as SSGADet(T) + p = atof (ppSelect.second [0].c_str ()); + + replace = new eoSSGAStochTournamentReplacement (p); + + } + else { + + std::string stmp = std::string ("Invalid replacement: ") + ppReplace.first; + throw std::runtime_error (stmp.c_str ()); + + } + + _state.storeFunctor (replace); + + // adding weak elitism + eoValueParam& weakElitismParam = _parser.createParam (false, "weakElitism", "Old best parent replaces new worst offspring *if necessary*", 'w', "Evolution Engine"); + + if (weakElitismParam.value ()) { + + eoReplacement* replaceTmp = replace; + replace = new eoWeakElitistReplacement (*replaceTmp); + _state.storeFunctor (replace); + + } + + + + eoSelectTransform* selectTransform = new eoSelectTransform (*select, _transform); + _state.storeFunctor (selectTransform); + + eoTimeVaryingLoopEval* popEval = new eoTimeVaryingLoopEval (_eval); + _state.storeFunctor (popEval); + + // now the eoEasyEA (Modified) + eoAlgo* ga = new eoEasyEA (_checkpoint, *popEval, *selectTransform, *replace); + _state.storeFunctor (ga); + + // that's it! + return *ga; + +} + + +/* ********************************************************************************** + ********************************************************************************** */ + +// Now use all of the above, + representation dependent things +int main (int argc, char* argv []) { + + try { + + // ////////////////////// // + // User parameter reading // + // ////////////////////// // + + eoParser parser (argc, argv); + + // Parameter for loading a problem instance + eoValueParam instanceParam ("", "instance", "Instance to be loaded"); + parser.processParam (instanceParam, "Problem params"); + std::string instance = instanceParam.value (); + + // We try to load an instance of the VRP problem + eoVRPUtils::load (instance.c_str ()); + + // Initialization of random seed + rng.reseed (time (0)); + + // ////////////////////////// // + // Keeps all things allocated // + // ////////////////////////// // + + eoState state; + + + // ///////////////////// // + // The fitness evaluator // + // ///////////////////// // + + eoVRPEvalFunc plainEval; + + // Turn that object into an evaluation counter + eoEvalFuncCounter eval (plainEval); + + + // ////////////////////// // + // A genotype initializer // + // ////////////////////// // + + eoVRPInit init; + + + // ///////////////////////////////////////////////////// // + // Build the variation operator (any seq/prop construct) // + // ///////////////////////////////////////////////////// // + + // A (first) crossover + eoVRPGenericCrossover cross; + + // A (first) mutation + eoVRPMutation mut; + + // First read the individual level parameters + double pCross = parser.createParam (0.6, "pCross", "Probability of Crossover", 'C', "Variation Operators" ).value (); + + // Minimum check + if ((pCross < 0) || (pCross > 1)) + throw std::runtime_error ("Invalid pCross"); + + double pMut = parser.createParam (0.1, "pMut", "Probability of Mutation", 'M', "Variation Operators" ).value (); + + // Minimum check + if ((pMut < 0) || (pMut > 1)) + throw std::runtime_error ("Invalid pMut"); + + // Now create the transform operator + eoPropCombinedQuadOp xover (cross, 1.0); + eoPropCombinedMonOp mutation (mut, 1.0); + eoSGATransform transform (xover, pCross, mutation, pMut); + + + // ////////////////////////////////////////////// // + // Now some representation-independent things // + // (no need to modify anything beyond this point) // + // ////////////////////////////////////////////// // + + // Initialize the population + eoPop& pop = do_make_pop (parser, state, init); + + // Stopping criteria + eoContinue& term = do_make_continue (parser, state, eval); + + // Output + eoCheckPoint& checkpoint = do_make_checkpoint (parser, state, eval, term); + + + // ////////// // + // Statistics // + // ////////// // + + eoVRPStat myStat; + checkpoint.add (myStat); + + // This one is probably redundant with the one in make_checkpoint, but w.t.h. + eoIncrementorParam generationCounter ("Gen."); + checkpoint.add (generationCounter); + + // Need to get the name of the redDir param (if any) + std::string dirName = parser.getORcreateParam (std::string ("Res"), "resDir", "Directory to store DISK outputs", '\0', "Output - Disk").value () + "/"; + + // Those need to be pointers because of the if's + eoStdoutMonitor* myStdOutMonitor; + eoFileMonitor* myFileMonitor; + +#ifdef HAVE_GNUPLOT + eoGnuplot1DMonitor* myGnuMonitor; +#endif + + // Now check how you want to output the stat: + bool printVRPStat = parser.createParam (false, "coutVRPStat", "Prints my stat to screen, one line per generation", '\0', "My application").value (); + bool fileVRPStat = parser.createParam (false, "fileVRPStat", "Saves my stat to file (in resDir", '\0', "My application").value (); + bool plotVRPStat = parser.createParam (false, "plotVRPStat", "On-line plots my stat using gnuplot", '\0', "My application").value (); + + // Should we write it on StdOut ? + if (printVRPStat) { + + myStdOutMonitor = new eoStdoutMonitor (false); + + // Don't forget to store the memory in the state + state.storeFunctor (myStdOutMonitor); + + // And of course to add the monitor to the checkpoint + checkpoint.add (*myStdOutMonitor); + + // And the different fields to the monitor + myStdOutMonitor->add (generationCounter); + myStdOutMonitor->add (eval); + myStdOutMonitor->add (myStat); + + } + + // First check the directory (and creates it if not exists already): + if (fileVRPStat || plotVRPStat) + if (!testDirRes (dirName, true)) + throw std::runtime_error ("Problem with resDir"); + + // Should we write it to a file ? + if (fileVRPStat) { + + // The file name is hard-coded - of course you can read + // a string parameter in the parser if you prefer + myFileMonitor = new eoFileMonitor (dirName + "myStat.xg"); + + // Don't forget to store the memory in the state + state.storeFunctor (myFileMonitor); + + // And of course to add the monitor to the checkpoint + checkpoint.add (*myFileMonitor); + + // And the different fields to the monitor + myFileMonitor->add (generationCounter); + myFileMonitor->add (eval); + myFileMonitor->add (myStat); + + } + +#ifdef HAVE_GNUPLOT + + // Should we PLOT it on StdOut ? (one dot per generation, incremental plot) + if (plotVRPStat) { + + myGnuMonitor = new eoGnuplot1DMonitor (dirName + "plot_myStat.xg", minimizing_fitness ()); + // NOTE: you can send commands to gnuplot at any time with the method + // myGnuMonitor->gnuplotCommand(string) + // par exemple, gnuplotCommand("set logscale y") + + // Don't forget to store the memory in the state + state.storeFunctor (myGnuMonitor); + + // And of course to add the monitor to the checkpoint + checkpoint.add (*myGnuMonitor); + + // And the different fields to the monitor (X = eval, Y = myStat) + myGnuMonitor->add (eval); + myGnuMonitor->add (myStat); + + } + +#endif + + + // ///////////////////////////// // + // Construction of the algorithm // + // ///////////////////////////// // + + // Algorithm (need the operator!) + eoAlgo& ga = make_algo_scalar_transform (parser, state, eval, checkpoint, transform); + + + // /////////////////////////////////////////////////// // + // To be called AFTER all parameters have been read!!! // + // /////////////////////////////////////////////////// // + + make_help (parser); + + + // //////////////////// // + // Launch the algorithm // + // /////////////////// // + + // Evaluate intial population AFTER help and status in case it takes time + apply (eval, pop); + + // Run the GA + do_run (ga, pop); + + std::cout << "Solution:" << std::endl; + pop.best_element ().printAllOn (std::cout); + std::cout << std::endl; + + + } + catch (std::exception& e) { + + std::cerr << e.what () << std::endl; + + } + + return 0; + +} diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.params b/contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.params new file mode 100644 index 000000000..9bd3e1450 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/CVRP-TW.params @@ -0,0 +1,54 @@ + +###### General ###### +# --help=0 # -h : Prints this message +# --stopOnUnknownParam=1 # Stop if unkown param entered +# --seed=1194615003 # -S : Random number seed + +###### Evolution Engine ###### +--popSize=200 # -P : Population Size +--selection=DetTour(6) # -S : Selection: DetTour(T), StochTour(t), Roulette, Ranking(p,e) or Sequential(ordered/unordered) +# --nbOffspring=100% # -O : Nb of offspring (percentage or absolute) +--replacement=Plus # -R : Replacement: Comma, Plus or EPTour(T), SSGAWorst, SSGADet(T), SSGAStoch(t) +# --weakElitism=0 # -w : Old best parent replaces new worst offspring *if necessary* + +###### My application ###### +# --coutVRPStat=0 # Prints my stat to screen, one line per generation +# --fileVRPStat=0 # Saves my stat to file (in resDir +# --plotVRPStat=0 # On-line plots my stat using gnuplot + +###### Output ###### +# --useEval=1 # Use nb of eval. as counter (vs nb of gen.) +# --useTime=1 # Display time (s) every generation +--printBestStat=1 # Print Best/avg/stdev every gen. +# --printPop=1 # Print sorted pop. every gen. + +###### Output - Disk ###### +# --resDir=Res # Directory to store DISK outputs +# --eraseDir=1 # erase files in dirName if any +# --fileBestStat=0 # Output bes/avg/std to file + +###### Output - Graphical ###### +# --plotBestStat=0 # Plot Best/avg Stat +# --plotHisto=0 # Plot histogram of fitnesses + +###### Persistence ###### +# --Load= # -L : A save file to restart from +# --recomputeFitness=0 # -r : Recompute the fitness after re-loading the pop.? +# --saveFrequency=0 # Save every F generation (0 = only final state, absent = never) +# --saveTimeInterval=0 # Save every T seconds (0 or absent = never) +# --status=./CVRP-TW.status # Status file + +###### Problem params ###### +--instance=solomon/r102.dat # Instance to be loaded + +###### Stopping criterion ###### +--maxGen=100 # -G : Maximum number of generations () = none) +# --steadyGen=100 # -s : Number of generations with no improvement +# --minGen=0 # -g : Minimum number of generations +# --maxEval=0 # -E : Maximum number of evaluations (0 = none) +# --targetFitness=0 # -T : Stop when fitness reaches +# --CtrlC=0 # -C : Terminate current generation upon Ctrl C + +###### Variation Operators ###### +--pCross=1 # -C : Probability of Crossover +--pMut=1 # -M : Probability of Mutation diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c101.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c101.dat new file mode 100644 index 000000000..14869a643 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c101.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 912.00 967.00 90.00 +3 45.00 70.00 30.00 825.00 870.00 90.00 +4 42.00 66.00 10.00 65.00 146.00 90.00 +5 42.00 68.00 10.00 727.00 782.00 90.00 +6 42.00 65.00 10.00 15.00 67.00 90.00 +7 40.00 69.00 20.00 621.00 702.00 90.00 +8 40.00 66.00 20.00 170.00 225.00 90.00 +9 38.00 68.00 20.00 255.00 324.00 90.00 +10 38.00 70.00 10.00 534.00 605.00 90.00 +11 35.00 66.00 10.00 357.00 410.00 90.00 +12 35.00 69.00 10.00 448.00 505.00 90.00 +13 25.00 85.00 20.00 652.00 721.00 90.00 +14 22.00 75.00 30.00 30.00 92.00 90.00 +15 22.00 85.00 10.00 567.00 620.00 90.00 +16 20.00 80.00 40.00 384.00 429.00 90.00 +17 20.00 85.00 40.00 475.00 528.00 90.00 +18 18.00 75.00 20.00 99.00 148.00 90.00 +19 15.00 75.00 20.00 179.00 254.00 90.00 +20 15.00 80.00 10.00 278.00 345.00 90.00 +21 30.00 50.00 10.00 10.00 73.00 90.00 +22 30.00 52.00 20.00 914.00 965.00 90.00 +23 28.00 52.00 20.00 812.00 883.00 90.00 +24 28.00 55.00 10.00 732.00 777.00 90.00 +25 25.00 50.00 10.00 65.00 144.00 90.00 +26 25.00 52.00 40.00 169.00 224.00 90.00 +27 25.00 55.00 10.00 622.00 701.00 90.00 +28 23.00 52.00 10.00 261.00 316.00 90.00 +29 23.00 55.00 20.00 546.00 593.00 90.00 +30 20.00 50.00 10.00 358.00 405.00 90.00 +31 20.00 55.00 10.00 449.00 504.00 90.00 +32 10.00 35.00 20.00 200.00 237.00 90.00 +33 10.00 40.00 30.00 31.00 100.00 90.00 +34 8.00 40.00 40.00 87.00 158.00 90.00 +35 8.00 45.00 20.00 751.00 816.00 90.00 +36 5.00 35.00 10.00 283.00 344.00 90.00 +37 5.00 45.00 10.00 665.00 716.00 90.00 +38 2.00 40.00 20.00 383.00 434.00 90.00 +39 0.00 40.00 30.00 479.00 522.00 90.00 +40 0.00 45.00 20.00 567.00 624.00 90.00 +41 35.00 30.00 10.00 264.00 321.00 90.00 +42 35.00 32.00 10.00 166.00 235.00 90.00 +43 33.00 32.00 20.00 68.00 149.00 90.00 +44 33.00 35.00 10.00 16.00 80.00 90.00 +45 32.00 30.00 10.00 359.00 412.00 90.00 +46 30.00 30.00 10.00 541.00 600.00 90.00 +47 30.00 32.00 30.00 448.00 509.00 90.00 +48 30.00 35.00 10.00 1054.00 1127.00 90.00 +49 28.00 30.00 10.00 632.00 693.00 90.00 +50 28.00 35.00 10.00 1001.00 1066.00 90.00 +51 26.00 32.00 10.00 815.00 880.00 90.00 +52 25.00 30.00 10.00 725.00 786.00 90.00 +53 25.00 35.00 10.00 912.00 969.00 90.00 +54 44.00 5.00 20.00 286.00 347.00 90.00 +55 42.00 10.00 40.00 186.00 257.00 90.00 +56 42.00 15.00 10.00 95.00 158.00 90.00 +57 40.00 5.00 30.00 385.00 436.00 90.00 +58 40.00 15.00 40.00 35.00 87.00 90.00 +59 38.00 5.00 30.00 471.00 534.00 90.00 +60 38.00 15.00 10.00 651.00 740.00 90.00 +61 35.00 5.00 20.00 562.00 629.00 90.00 +62 50.00 30.00 10.00 531.00 610.00 90.00 +63 50.00 35.00 20.00 262.00 317.00 90.00 +64 50.00 40.00 50.00 171.00 218.00 90.00 +65 48.00 30.00 10.00 632.00 693.00 90.00 +66 48.00 40.00 10.00 76.00 129.00 90.00 +67 47.00 35.00 10.00 826.00 875.00 90.00 +68 47.00 40.00 10.00 12.00 77.00 90.00 +69 45.00 30.00 10.00 734.00 777.00 90.00 +70 45.00 35.00 10.00 916.00 969.00 90.00 +71 95.00 30.00 30.00 387.00 456.00 90.00 +72 95.00 35.00 20.00 293.00 360.00 90.00 +73 53.00 30.00 10.00 450.00 505.00 90.00 +74 92.00 30.00 10.00 478.00 551.00 90.00 +75 53.00 35.00 50.00 353.00 412.00 90.00 +76 45.00 65.00 20.00 997.00 1068.00 90.00 +77 90.00 35.00 10.00 203.00 260.00 90.00 +78 88.00 30.00 10.00 574.00 643.00 90.00 +79 88.00 35.00 20.00 109.00 170.00 90.00 +80 87.00 30.00 10.00 668.00 731.00 90.00 +81 85.00 25.00 10.00 769.00 820.00 90.00 +82 85.00 35.00 30.00 47.00 124.00 90.00 +83 75.00 55.00 20.00 369.00 420.00 90.00 +84 72.00 55.00 10.00 265.00 338.00 90.00 +85 70.00 58.00 20.00 458.00 523.00 90.00 +86 68.00 60.00 30.00 555.00 612.00 90.00 +87 66.00 55.00 10.00 173.00 238.00 90.00 +88 65.00 55.00 20.00 85.00 144.00 90.00 +89 65.00 60.00 30.00 645.00 708.00 90.00 +90 63.00 58.00 10.00 737.00 802.00 90.00 +91 60.00 55.00 10.00 20.00 84.00 90.00 +92 60.00 60.00 10.00 836.00 889.00 90.00 +93 67.00 85.00 20.00 368.00 441.00 90.00 +94 65.00 85.00 40.00 475.00 518.00 90.00 +95 65.00 82.00 10.00 285.00 336.00 90.00 +96 62.00 80.00 30.00 196.00 239.00 90.00 +97 60.00 80.00 10.00 95.00 156.00 90.00 +98 60.00 85.00 30.00 561.00 622.00 90.00 +99 58.00 75.00 20.00 30.00 84.00 90.00 +100 55.00 80.00 10.00 743.00 820.00 90.00 +101 55.00 85.00 20.00 647.00 726.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c102.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c102.dat new file mode 100644 index 000000000..9c2e70add --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c102.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 0.00 1127.00 90.00 +3 45.00 70.00 30.00 0.00 1125.00 90.00 +4 42.00 66.00 10.00 0.00 1129.00 90.00 +5 42.00 68.00 10.00 727.00 782.00 90.00 +6 42.00 65.00 10.00 0.00 1130.00 90.00 +7 40.00 69.00 20.00 621.00 702.00 90.00 +8 40.00 66.00 20.00 0.00 1130.00 90.00 +9 38.00 68.00 20.00 255.00 324.00 90.00 +10 38.00 70.00 10.00 534.00 605.00 90.00 +11 35.00 66.00 10.00 357.00 410.00 90.00 +12 35.00 69.00 10.00 448.00 505.00 90.00 +13 25.00 85.00 20.00 0.00 1107.00 90.00 +14 22.00 75.00 30.00 30.00 92.00 90.00 +15 22.00 85.00 10.00 567.00 620.00 90.00 +16 20.00 80.00 40.00 384.00 429.00 90.00 +17 20.00 85.00 40.00 475.00 528.00 90.00 +18 18.00 75.00 20.00 99.00 148.00 90.00 +19 15.00 75.00 20.00 179.00 254.00 90.00 +20 15.00 80.00 10.00 278.00 345.00 90.00 +21 30.00 50.00 10.00 10.00 73.00 90.00 +22 30.00 52.00 20.00 0.00 1135.00 90.00 +23 28.00 52.00 20.00 812.00 883.00 90.00 +24 28.00 55.00 10.00 732.00 777.00 90.00 +25 25.00 50.00 10.00 65.00 144.00 90.00 +26 25.00 52.00 40.00 169.00 224.00 90.00 +27 25.00 55.00 10.00 0.00 1130.00 90.00 +28 23.00 52.00 10.00 261.00 316.00 90.00 +29 23.00 55.00 20.00 546.00 593.00 90.00 +30 20.00 50.00 10.00 358.00 405.00 90.00 +31 20.00 55.00 10.00 449.00 504.00 90.00 +32 10.00 35.00 20.00 0.00 1112.00 90.00 +33 10.00 40.00 30.00 31.00 100.00 90.00 +34 8.00 40.00 40.00 87.00 158.00 90.00 +35 8.00 45.00 20.00 0.00 1113.00 90.00 +36 5.00 35.00 10.00 283.00 344.00 90.00 +37 5.00 45.00 10.00 665.00 716.00 90.00 +38 2.00 40.00 20.00 0.00 1106.00 90.00 +39 0.00 40.00 30.00 479.00 522.00 90.00 +40 0.00 45.00 20.00 567.00 624.00 90.00 +41 35.00 30.00 10.00 264.00 321.00 90.00 +42 35.00 32.00 10.00 166.00 235.00 90.00 +43 33.00 32.00 20.00 68.00 149.00 90.00 +44 33.00 35.00 10.00 16.00 80.00 90.00 +45 32.00 30.00 10.00 359.00 412.00 90.00 +46 30.00 30.00 10.00 541.00 600.00 90.00 +47 30.00 32.00 30.00 448.00 509.00 90.00 +48 30.00 35.00 10.00 1054.00 1127.00 90.00 +49 28.00 30.00 10.00 0.00 1122.00 90.00 +50 28.00 35.00 10.00 1001.00 1066.00 90.00 +51 26.00 32.00 10.00 0.00 1123.00 90.00 +52 25.00 30.00 10.00 725.00 786.00 90.00 +53 25.00 35.00 10.00 0.00 1124.00 90.00 +54 44.00 5.00 20.00 286.00 347.00 90.00 +55 42.00 10.00 40.00 186.00 257.00 90.00 +56 42.00 15.00 10.00 95.00 158.00 90.00 +57 40.00 5.00 30.00 385.00 436.00 90.00 +58 40.00 15.00 40.00 35.00 87.00 90.00 +59 38.00 5.00 30.00 471.00 534.00 90.00 +60 38.00 15.00 10.00 0.00 1110.00 90.00 +61 35.00 5.00 20.00 562.00 629.00 90.00 +62 50.00 30.00 10.00 531.00 610.00 90.00 +63 50.00 35.00 20.00 262.00 317.00 90.00 +64 50.00 40.00 50.00 171.00 218.00 90.00 +65 48.00 30.00 10.00 632.00 693.00 90.00 +66 48.00 40.00 10.00 76.00 129.00 90.00 +67 47.00 35.00 10.00 826.00 875.00 90.00 +68 47.00 40.00 10.00 12.00 77.00 90.00 +69 45.00 30.00 10.00 734.00 777.00 90.00 +70 45.00 35.00 10.00 916.00 969.00 90.00 +71 95.00 30.00 30.00 387.00 456.00 90.00 +72 95.00 35.00 20.00 293.00 360.00 90.00 +73 53.00 30.00 10.00 0.00 1122.00 90.00 +74 92.00 30.00 10.00 478.00 551.00 90.00 +75 53.00 35.00 50.00 353.00 412.00 90.00 +76 45.00 65.00 20.00 0.00 1130.00 90.00 +77 90.00 35.00 10.00 203.00 260.00 90.00 +78 88.00 30.00 10.00 574.00 643.00 90.00 +79 88.00 35.00 20.00 109.00 170.00 90.00 +80 87.00 30.00 10.00 668.00 731.00 90.00 +81 85.00 25.00 10.00 769.00 820.00 90.00 +82 85.00 35.00 30.00 47.00 124.00 90.00 +83 75.00 55.00 20.00 0.00 1110.00 90.00 +84 72.00 55.00 10.00 0.00 1113.00 90.00 +85 70.00 58.00 20.00 458.00 523.00 90.00 +86 68.00 60.00 30.00 0.00 1116.00 90.00 +87 66.00 55.00 10.00 173.00 238.00 90.00 +88 65.00 55.00 20.00 85.00 144.00 90.00 +89 65.00 60.00 30.00 645.00 708.00 90.00 +90 63.00 58.00 10.00 737.00 802.00 90.00 +91 60.00 55.00 10.00 20.00 84.00 90.00 +92 60.00 60.00 10.00 0.00 1123.00 90.00 +93 67.00 85.00 20.00 368.00 441.00 90.00 +94 65.00 85.00 40.00 475.00 518.00 90.00 +95 65.00 82.00 10.00 0.00 1105.00 90.00 +96 62.00 80.00 30.00 0.00 1108.00 90.00 +97 60.00 80.00 10.00 0.00 1109.00 90.00 +98 60.00 85.00 30.00 561.00 622.00 90.00 +99 58.00 75.00 20.00 0.00 1115.00 90.00 +100 55.00 80.00 10.00 743.00 820.00 90.00 +101 55.00 85.00 20.00 647.00 726.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c103.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c103.dat new file mode 100644 index 000000000..e9b49b94d --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c103.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 0.00 1127.00 90.00 +3 45.00 70.00 30.00 0.00 1125.00 90.00 +4 42.00 66.00 10.00 0.00 1129.00 90.00 +5 42.00 68.00 10.00 727.00 782.00 90.00 +6 42.00 65.00 10.00 0.00 1130.00 90.00 +7 40.00 69.00 20.00 621.00 702.00 90.00 +8 40.00 66.00 20.00 0.00 1130.00 90.00 +9 38.00 68.00 20.00 255.00 324.00 90.00 +10 38.00 70.00 10.00 534.00 605.00 90.00 +11 35.00 66.00 10.00 357.00 410.00 90.00 +12 35.00 69.00 10.00 448.00 505.00 90.00 +13 25.00 85.00 20.00 0.00 1107.00 90.00 +14 22.00 75.00 30.00 30.00 92.00 90.00 +15 22.00 85.00 10.00 0.00 1106.00 90.00 +16 20.00 80.00 40.00 384.00 429.00 90.00 +17 20.00 85.00 40.00 0.00 1105.00 90.00 +18 18.00 75.00 20.00 99.00 148.00 90.00 +19 15.00 75.00 20.00 0.00 1110.00 90.00 +20 15.00 80.00 10.00 0.00 1106.00 90.00 +21 30.00 50.00 10.00 0.00 1136.00 90.00 +22 30.00 52.00 20.00 0.00 1135.00 90.00 +23 28.00 52.00 20.00 812.00 883.00 90.00 +24 28.00 55.00 10.00 732.00 777.00 90.00 +25 25.00 50.00 10.00 0.00 1131.00 90.00 +26 25.00 52.00 40.00 169.00 224.00 90.00 +27 25.00 55.00 10.00 0.00 1130.00 90.00 +28 23.00 52.00 10.00 261.00 316.00 90.00 +29 23.00 55.00 20.00 0.00 1128.00 90.00 +30 20.00 50.00 10.00 0.00 1126.00 90.00 +31 20.00 55.00 10.00 449.00 504.00 90.00 +32 10.00 35.00 20.00 0.00 1112.00 90.00 +33 10.00 40.00 30.00 0.00 1114.00 90.00 +34 8.00 40.00 40.00 87.00 158.00 90.00 +35 8.00 45.00 20.00 0.00 1113.00 90.00 +36 5.00 35.00 10.00 283.00 344.00 90.00 +37 5.00 45.00 10.00 665.00 716.00 90.00 +38 2.00 40.00 20.00 0.00 1106.00 90.00 +39 0.00 40.00 30.00 479.00 522.00 90.00 +40 0.00 45.00 20.00 567.00 624.00 90.00 +41 35.00 30.00 10.00 264.00 321.00 90.00 +42 35.00 32.00 10.00 166.00 235.00 90.00 +43 33.00 32.00 20.00 68.00 149.00 90.00 +44 33.00 35.00 10.00 0.00 1129.00 90.00 +45 32.00 30.00 10.00 359.00 412.00 90.00 +46 30.00 30.00 10.00 541.00 600.00 90.00 +47 30.00 32.00 30.00 0.00 1125.00 90.00 +48 30.00 35.00 10.00 0.00 1127.00 90.00 +49 28.00 30.00 10.00 0.00 1122.00 90.00 +50 28.00 35.00 10.00 1001.00 1066.00 90.00 +51 26.00 32.00 10.00 0.00 1123.00 90.00 +52 25.00 30.00 10.00 0.00 1121.00 90.00 +53 25.00 35.00 10.00 0.00 1124.00 90.00 +54 44.00 5.00 20.00 286.00 347.00 90.00 +55 42.00 10.00 40.00 0.00 1105.00 90.00 +56 42.00 15.00 10.00 95.00 158.00 90.00 +57 40.00 5.00 30.00 385.00 436.00 90.00 +58 40.00 15.00 40.00 0.00 1111.00 90.00 +59 38.00 5.00 30.00 471.00 534.00 90.00 +60 38.00 15.00 10.00 0.00 1110.00 90.00 +61 35.00 5.00 20.00 0.00 1100.00 90.00 +62 50.00 30.00 10.00 0.00 1123.00 90.00 +63 50.00 35.00 20.00 262.00 317.00 90.00 +64 50.00 40.00 50.00 0.00 1131.00 90.00 +65 48.00 30.00 10.00 632.00 693.00 90.00 +66 48.00 40.00 10.00 76.00 129.00 90.00 +67 47.00 35.00 10.00 826.00 875.00 90.00 +68 47.00 40.00 10.00 12.00 77.00 90.00 +69 45.00 30.00 10.00 734.00 777.00 90.00 +70 45.00 35.00 10.00 916.00 969.00 90.00 +71 95.00 30.00 30.00 387.00 456.00 90.00 +72 95.00 35.00 20.00 0.00 1088.00 90.00 +73 53.00 30.00 10.00 0.00 1122.00 90.00 +74 92.00 30.00 10.00 0.00 1090.00 90.00 +75 53.00 35.00 50.00 353.00 412.00 90.00 +76 45.00 65.00 20.00 0.00 1130.00 90.00 +77 90.00 35.00 10.00 203.00 260.00 90.00 +78 88.00 30.00 10.00 574.00 643.00 90.00 +79 88.00 35.00 20.00 109.00 170.00 90.00 +80 87.00 30.00 10.00 668.00 731.00 90.00 +81 85.00 25.00 10.00 769.00 820.00 90.00 +82 85.00 35.00 30.00 0.00 1098.00 90.00 +83 75.00 55.00 20.00 0.00 1110.00 90.00 +84 72.00 55.00 10.00 0.00 1113.00 90.00 +85 70.00 58.00 20.00 458.00 523.00 90.00 +86 68.00 60.00 30.00 0.00 1116.00 90.00 +87 66.00 55.00 10.00 0.00 1119.00 90.00 +88 65.00 55.00 20.00 85.00 144.00 90.00 +89 65.00 60.00 30.00 645.00 708.00 90.00 +90 63.00 58.00 10.00 0.00 1121.00 90.00 +91 60.00 55.00 10.00 0.00 1125.00 90.00 +92 60.00 60.00 10.00 0.00 1123.00 90.00 +93 67.00 85.00 20.00 368.00 441.00 90.00 +94 65.00 85.00 40.00 475.00 518.00 90.00 +95 65.00 82.00 10.00 0.00 1105.00 90.00 +96 62.00 80.00 30.00 0.00 1108.00 90.00 +97 60.00 80.00 10.00 0.00 1109.00 90.00 +98 60.00 85.00 30.00 0.00 1105.00 90.00 +99 58.00 75.00 20.00 0.00 1115.00 90.00 +100 55.00 80.00 10.00 743.00 820.00 90.00 +101 55.00 85.00 20.00 647.00 726.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c104.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c104.dat new file mode 100644 index 000000000..0b4d141b1 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c104.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 0.00 1127.00 90.00 +3 45.00 70.00 30.00 0.00 1125.00 90.00 +4 42.00 66.00 10.00 0.00 1129.00 90.00 +5 42.00 68.00 10.00 727.00 782.00 90.00 +6 42.00 65.00 10.00 0.00 1130.00 90.00 +7 40.00 69.00 20.00 0.00 1127.00 90.00 +8 40.00 66.00 20.00 0.00 1130.00 90.00 +9 38.00 68.00 20.00 255.00 324.00 90.00 +10 38.00 70.00 10.00 534.00 605.00 90.00 +11 35.00 66.00 10.00 0.00 1129.00 90.00 +12 35.00 69.00 10.00 448.00 505.00 90.00 +13 25.00 85.00 20.00 0.00 1107.00 90.00 +14 22.00 75.00 30.00 30.00 92.00 90.00 +15 22.00 85.00 10.00 0.00 1106.00 90.00 +16 20.00 80.00 40.00 384.00 429.00 90.00 +17 20.00 85.00 40.00 0.00 1105.00 90.00 +18 18.00 75.00 20.00 0.00 1112.00 90.00 +19 15.00 75.00 20.00 0.00 1110.00 90.00 +20 15.00 80.00 10.00 0.00 1106.00 90.00 +21 30.00 50.00 10.00 0.00 1136.00 90.00 +22 30.00 52.00 20.00 0.00 1135.00 90.00 +23 28.00 52.00 20.00 0.00 1133.00 90.00 +24 28.00 55.00 10.00 732.00 777.00 90.00 +25 25.00 50.00 10.00 0.00 1131.00 90.00 +26 25.00 52.00 40.00 169.00 224.00 90.00 +27 25.00 55.00 10.00 0.00 1130.00 90.00 +28 23.00 52.00 10.00 0.00 1128.00 90.00 +29 23.00 55.00 20.00 0.00 1128.00 90.00 +30 20.00 50.00 10.00 0.00 1126.00 90.00 +31 20.00 55.00 10.00 0.00 1125.00 90.00 +32 10.00 35.00 20.00 0.00 1112.00 90.00 +33 10.00 40.00 30.00 0.00 1114.00 90.00 +34 8.00 40.00 40.00 0.00 1112.00 90.00 +35 8.00 45.00 20.00 0.00 1113.00 90.00 +36 5.00 35.00 10.00 0.00 1107.00 90.00 +37 5.00 45.00 10.00 0.00 1110.00 90.00 +38 2.00 40.00 20.00 0.00 1106.00 90.00 +39 0.00 40.00 30.00 479.00 522.00 90.00 +40 0.00 45.00 20.00 0.00 1105.00 90.00 +41 35.00 30.00 10.00 0.00 1125.00 90.00 +42 35.00 32.00 10.00 0.00 1127.00 90.00 +43 33.00 32.00 20.00 0.00 1126.00 90.00 +44 33.00 35.00 10.00 0.00 1129.00 90.00 +45 32.00 30.00 10.00 359.00 412.00 90.00 +46 30.00 30.00 10.00 0.00 1123.00 90.00 +47 30.00 32.00 30.00 0.00 1125.00 90.00 +48 30.00 35.00 10.00 0.00 1127.00 90.00 +49 28.00 30.00 10.00 0.00 1122.00 90.00 +50 28.00 35.00 10.00 0.00 1126.00 90.00 +51 26.00 32.00 10.00 0.00 1123.00 90.00 +52 25.00 30.00 10.00 0.00 1121.00 90.00 +53 25.00 35.00 10.00 0.00 1124.00 90.00 +54 44.00 5.00 20.00 286.00 347.00 90.00 +55 42.00 10.00 40.00 0.00 1105.00 90.00 +56 42.00 15.00 10.00 95.00 158.00 90.00 +57 40.00 5.00 30.00 0.00 1101.00 90.00 +58 40.00 15.00 40.00 0.00 1111.00 90.00 +59 38.00 5.00 30.00 471.00 534.00 90.00 +60 38.00 15.00 10.00 0.00 1110.00 90.00 +61 35.00 5.00 20.00 0.00 1100.00 90.00 +62 50.00 30.00 10.00 0.00 1123.00 90.00 +63 50.00 35.00 20.00 262.00 317.00 90.00 +64 50.00 40.00 50.00 0.00 1131.00 90.00 +65 48.00 30.00 10.00 0.00 1124.00 90.00 +66 48.00 40.00 10.00 0.00 1133.00 90.00 +67 47.00 35.00 10.00 0.00 1129.00 90.00 +68 47.00 40.00 10.00 12.00 77.00 90.00 +69 45.00 30.00 10.00 0.00 1125.00 90.00 +70 45.00 35.00 10.00 916.00 969.00 90.00 +71 95.00 30.00 30.00 0.00 1087.00 90.00 +72 95.00 35.00 20.00 0.00 1088.00 90.00 +73 53.00 30.00 10.00 0.00 1122.00 90.00 +74 92.00 30.00 10.00 0.00 1090.00 90.00 +75 53.00 35.00 50.00 353.00 412.00 90.00 +76 45.00 65.00 20.00 0.00 1130.00 90.00 +77 90.00 35.00 10.00 203.00 260.00 90.00 +78 88.00 30.00 10.00 574.00 643.00 90.00 +79 88.00 35.00 20.00 0.00 1095.00 90.00 +80 87.00 30.00 10.00 668.00 731.00 90.00 +81 85.00 25.00 10.00 0.00 1094.00 90.00 +82 85.00 35.00 30.00 0.00 1098.00 90.00 +83 75.00 55.00 20.00 0.00 1110.00 90.00 +84 72.00 55.00 10.00 0.00 1113.00 90.00 +85 70.00 58.00 20.00 458.00 523.00 90.00 +86 68.00 60.00 30.00 0.00 1116.00 90.00 +87 66.00 55.00 10.00 0.00 1119.00 90.00 +88 65.00 55.00 20.00 85.00 144.00 90.00 +89 65.00 60.00 30.00 0.00 1119.00 90.00 +90 63.00 58.00 10.00 0.00 1121.00 90.00 +91 60.00 55.00 10.00 0.00 1125.00 90.00 +92 60.00 60.00 10.00 0.00 1123.00 90.00 +93 67.00 85.00 20.00 368.00 441.00 90.00 +94 65.00 85.00 40.00 0.00 1102.00 90.00 +95 65.00 82.00 10.00 0.00 1105.00 90.00 +96 62.00 80.00 30.00 0.00 1108.00 90.00 +97 60.00 80.00 10.00 0.00 1109.00 90.00 +98 60.00 85.00 30.00 0.00 1105.00 90.00 +99 58.00 75.00 20.00 0.00 1115.00 90.00 +100 55.00 80.00 10.00 743.00 820.00 90.00 +101 55.00 85.00 20.00 647.00 726.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c105.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c105.dat new file mode 100644 index 000000000..436ecdb66 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c105.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 885.00 994.00 90.00 +3 45.00 70.00 30.00 802.00 893.00 90.00 +4 42.00 66.00 10.00 25.00 186.00 90.00 +5 42.00 68.00 10.00 699.00 810.00 90.00 +6 42.00 65.00 10.00 15.00 120.00 90.00 +7 40.00 69.00 20.00 580.00 743.00 90.00 +8 40.00 66.00 20.00 142.00 253.00 90.00 +9 38.00 68.00 20.00 220.00 359.00 90.00 +10 38.00 70.00 10.00 499.00 640.00 90.00 +11 35.00 66.00 10.00 331.00 436.00 90.00 +12 35.00 69.00 10.00 420.00 533.00 90.00 +13 25.00 85.00 20.00 617.00 756.00 90.00 +14 22.00 75.00 30.00 30.00 155.00 90.00 +15 22.00 85.00 10.00 541.00 646.00 90.00 +16 20.00 80.00 40.00 362.00 451.00 90.00 +17 20.00 85.00 40.00 448.00 555.00 90.00 +18 18.00 75.00 20.00 75.00 172.00 90.00 +19 15.00 75.00 20.00 142.00 291.00 90.00 +20 15.00 80.00 10.00 244.00 379.00 90.00 +21 30.00 50.00 10.00 10.00 137.00 90.00 +22 30.00 52.00 20.00 888.00 991.00 90.00 +23 28.00 52.00 20.00 776.00 919.00 90.00 +24 28.00 55.00 10.00 709.00 800.00 90.00 +25 25.00 50.00 10.00 25.00 184.00 90.00 +26 25.00 52.00 40.00 142.00 251.00 90.00 +27 25.00 55.00 10.00 582.00 741.00 90.00 +28 23.00 52.00 10.00 234.00 343.00 90.00 +29 23.00 55.00 20.00 523.00 616.00 90.00 +30 20.00 50.00 10.00 335.00 428.00 90.00 +31 20.00 55.00 10.00 422.00 531.00 90.00 +32 10.00 35.00 20.00 181.00 256.00 90.00 +33 10.00 40.00 30.00 31.00 170.00 90.00 +34 8.00 40.00 40.00 52.00 193.00 90.00 +35 8.00 45.00 20.00 719.00 848.00 90.00 +36 5.00 35.00 10.00 252.00 375.00 90.00 +37 5.00 45.00 10.00 639.00 742.00 90.00 +38 2.00 40.00 20.00 357.00 460.00 90.00 +39 0.00 40.00 30.00 457.00 544.00 90.00 +40 0.00 45.00 20.00 538.00 653.00 90.00 +41 35.00 30.00 10.00 236.00 349.00 90.00 +42 35.00 32.00 10.00 132.00 269.00 90.00 +43 33.00 32.00 20.00 27.00 190.00 90.00 +44 33.00 35.00 10.00 16.00 144.00 90.00 +45 32.00 30.00 10.00 332.00 439.00 90.00 +46 30.00 30.00 10.00 512.00 629.00 90.00 +47 30.00 32.00 30.00 417.00 540.00 90.00 +48 30.00 35.00 10.00 982.00 1127.00 90.00 +49 28.00 30.00 10.00 601.00 724.00 90.00 +50 28.00 35.00 10.00 969.00 1098.00 90.00 +51 26.00 32.00 10.00 783.00 912.00 90.00 +52 25.00 30.00 10.00 695.00 816.00 90.00 +53 25.00 35.00 10.00 883.00 998.00 90.00 +54 44.00 5.00 20.00 255.00 378.00 90.00 +55 42.00 10.00 40.00 150.00 293.00 90.00 +56 42.00 15.00 10.00 63.00 190.00 90.00 +57 40.00 5.00 30.00 359.00 462.00 90.00 +58 40.00 15.00 40.00 35.00 140.00 90.00 +59 38.00 5.00 30.00 439.00 566.00 90.00 +60 38.00 15.00 10.00 607.00 784.00 90.00 +61 35.00 5.00 20.00 529.00 662.00 90.00 +62 50.00 30.00 10.00 491.00 650.00 90.00 +63 50.00 35.00 20.00 235.00 344.00 90.00 +64 50.00 40.00 50.00 147.00 242.00 90.00 +65 48.00 30.00 10.00 601.00 724.00 90.00 +66 48.00 40.00 10.00 50.00 155.00 90.00 +67 47.00 35.00 10.00 802.00 899.00 90.00 +68 47.00 40.00 10.00 12.00 143.00 90.00 +69 45.00 30.00 10.00 712.00 799.00 90.00 +70 45.00 35.00 10.00 889.00 996.00 90.00 +71 95.00 30.00 30.00 353.00 490.00 90.00 +72 95.00 35.00 20.00 260.00 393.00 90.00 +73 53.00 30.00 10.00 422.00 533.00 90.00 +74 92.00 30.00 10.00 442.00 587.00 90.00 +75 53.00 35.00 50.00 323.00 442.00 90.00 +76 45.00 65.00 20.00 962.00 1103.00 90.00 +77 90.00 35.00 10.00 175.00 288.00 90.00 +78 88.00 30.00 10.00 539.00 678.00 90.00 +79 88.00 35.00 20.00 78.00 201.00 90.00 +80 87.00 30.00 10.00 636.00 763.00 90.00 +81 85.00 25.00 10.00 744.00 845.00 90.00 +82 85.00 35.00 30.00 47.00 201.00 90.00 +83 75.00 55.00 20.00 344.00 445.00 90.00 +84 72.00 55.00 10.00 228.00 375.00 90.00 +85 70.00 58.00 20.00 425.00 556.00 90.00 +86 68.00 60.00 30.00 527.00 640.00 90.00 +87 66.00 55.00 10.00 141.00 270.00 90.00 +88 65.00 55.00 20.00 56.00 173.00 90.00 +89 65.00 60.00 30.00 614.00 739.00 90.00 +90 63.00 58.00 10.00 705.00 834.00 90.00 +91 60.00 55.00 10.00 20.00 148.00 90.00 +92 60.00 60.00 10.00 809.00 916.00 90.00 +93 67.00 85.00 20.00 331.00 478.00 90.00 +94 65.00 85.00 40.00 453.00 540.00 90.00 +95 65.00 82.00 10.00 260.00 361.00 90.00 +96 62.00 80.00 30.00 174.00 261.00 90.00 +97 60.00 80.00 10.00 64.00 187.00 90.00 +98 60.00 85.00 30.00 531.00 652.00 90.00 +99 58.00 75.00 20.00 30.00 139.00 90.00 +100 55.00 80.00 10.00 705.00 858.00 90.00 +101 55.00 85.00 20.00 608.00 765.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c106.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c106.dat new file mode 100644 index 000000000..8d34327ca --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c106.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 890.00 989.00 90.00 +3 45.00 70.00 30.00 816.00 879.00 90.00 +4 42.00 66.00 10.00 55.00 156.00 90.00 +5 42.00 68.00 10.00 703.00 806.00 90.00 +6 42.00 65.00 10.00 15.00 60.00 90.00 +7 40.00 69.00 20.00 559.00 764.00 90.00 +8 40.00 66.00 20.00 172.00 223.00 90.00 +9 38.00 68.00 20.00 250.00 329.00 90.00 +10 38.00 70.00 10.00 489.00 650.00 90.00 +11 35.00 66.00 10.00 361.00 406.00 90.00 +12 35.00 69.00 10.00 450.00 503.00 90.00 +13 25.00 85.00 20.00 647.00 726.00 90.00 +14 22.00 75.00 30.00 30.00 95.00 90.00 +15 22.00 85.00 10.00 571.00 616.00 90.00 +16 20.00 80.00 40.00 392.00 421.00 90.00 +17 20.00 85.00 40.00 478.00 525.00 90.00 +18 18.00 75.00 20.00 105.00 142.00 90.00 +19 15.00 75.00 20.00 172.00 261.00 90.00 +20 15.00 80.00 10.00 274.00 349.00 90.00 +21 30.00 50.00 10.00 10.00 77.00 90.00 +22 30.00 52.00 20.00 918.00 961.00 90.00 +23 28.00 52.00 20.00 806.00 889.00 90.00 +24 28.00 55.00 10.00 739.00 770.00 90.00 +25 25.00 50.00 10.00 55.00 154.00 90.00 +26 25.00 52.00 40.00 172.00 221.00 90.00 +27 25.00 55.00 10.00 612.00 711.00 90.00 +28 23.00 52.00 10.00 264.00 313.00 90.00 +29 23.00 55.00 20.00 553.00 586.00 90.00 +30 20.00 50.00 10.00 365.00 398.00 90.00 +31 20.00 55.00 10.00 452.00 501.00 90.00 +32 10.00 35.00 20.00 204.00 233.00 90.00 +33 10.00 40.00 30.00 31.00 189.00 90.00 +34 8.00 40.00 40.00 42.00 203.00 90.00 +35 8.00 45.00 20.00 715.00 852.00 90.00 +36 5.00 35.00 10.00 251.00 376.00 90.00 +37 5.00 45.00 10.00 648.00 733.00 90.00 +38 2.00 40.00 20.00 365.00 452.00 90.00 +39 0.00 40.00 30.00 474.00 527.00 90.00 +40 0.00 45.00 20.00 541.00 650.00 90.00 +41 35.00 30.00 10.00 240.00 345.00 90.00 +42 35.00 32.00 10.00 123.00 278.00 90.00 +43 33.00 32.00 20.00 19.00 225.00 90.00 +44 33.00 35.00 10.00 16.00 153.00 90.00 +45 32.00 30.00 10.00 338.00 433.00 90.00 +46 30.00 30.00 10.00 513.00 628.00 90.00 +47 30.00 32.00 30.00 415.00 542.00 90.00 +48 30.00 35.00 10.00 872.00 1127.00 90.00 +49 28.00 30.00 10.00 599.00 726.00 90.00 +50 28.00 35.00 10.00 917.00 1126.00 90.00 +51 26.00 32.00 10.00 779.00 916.00 90.00 +52 25.00 30.00 10.00 695.00 816.00 90.00 +53 25.00 35.00 10.00 857.00 1024.00 90.00 +54 44.00 5.00 20.00 221.00 412.00 90.00 +55 42.00 10.00 40.00 96.00 347.00 90.00 +56 42.00 15.00 10.00 35.00 233.00 90.00 +57 40.00 5.00 30.00 347.00 474.00 90.00 +58 40.00 15.00 40.00 35.00 172.00 90.00 +59 38.00 5.00 30.00 403.00 602.00 90.00 +60 38.00 15.00 10.00 521.00 870.00 90.00 +61 35.00 5.00 20.00 487.00 704.00 90.00 +62 50.00 30.00 10.00 422.00 719.00 90.00 +63 50.00 35.00 20.00 217.00 362.00 90.00 +64 50.00 40.00 50.00 142.00 247.00 90.00 +65 48.00 30.00 10.00 567.00 758.00 90.00 +66 48.00 40.00 10.00 34.00 171.00 90.00 +67 47.00 35.00 10.00 794.00 907.00 90.00 +68 47.00 40.00 10.00 12.00 226.00 90.00 +69 45.00 30.00 10.00 716.00 795.00 90.00 +70 45.00 35.00 10.00 873.00 1012.00 90.00 +71 95.00 30.00 30.00 266.00 577.00 90.00 +72 95.00 35.00 20.00 181.00 472.00 90.00 +73 53.00 30.00 10.00 402.00 553.00 90.00 +74 92.00 30.00 10.00 345.00 684.00 90.00 +75 53.00 35.00 50.00 294.00 471.00 90.00 +76 45.00 65.00 20.00 951.00 1114.00 90.00 +77 90.00 35.00 10.00 153.00 310.00 90.00 +78 88.00 30.00 10.00 450.00 767.00 90.00 +79 88.00 35.00 20.00 50.00 237.00 90.00 +80 87.00 30.00 10.00 567.00 832.00 90.00 +81 85.00 25.00 10.00 713.00 876.00 90.00 +82 85.00 35.00 30.00 47.00 331.00 90.00 +83 75.00 55.00 20.00 311.00 478.00 90.00 +84 72.00 55.00 10.00 127.00 476.00 90.00 +85 70.00 58.00 20.00 349.00 632.00 90.00 +86 68.00 60.00 30.00 476.00 691.00 90.00 +87 66.00 55.00 10.00 67.00 344.00 90.00 +88 65.00 55.00 20.00 25.00 256.00 90.00 +89 65.00 60.00 30.00 546.00 807.00 90.00 +90 63.00 58.00 10.00 630.00 909.00 90.00 +91 60.00 55.00 10.00 20.00 293.00 90.00 +92 60.00 60.00 10.00 769.00 956.00 90.00 +93 67.00 85.00 20.00 229.00 580.00 90.00 +94 65.00 85.00 40.00 442.00 551.00 90.00 +95 65.00 82.00 10.00 227.00 394.00 90.00 +96 62.00 80.00 30.00 163.00 272.00 90.00 +97 60.00 80.00 10.00 36.00 291.00 90.00 +98 60.00 85.00 30.00 469.00 714.00 90.00 +99 58.00 75.00 20.00 30.00 227.00 90.00 +100 55.00 80.00 10.00 595.00 968.00 90.00 +101 55.00 85.00 20.00 493.00 880.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c107.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c107.dat new file mode 100644 index 000000000..92ed2e423 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c107.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 850.00 1030.00 90.00 +3 45.00 70.00 30.00 758.00 938.00 90.00 +4 42.00 66.00 10.00 16.00 196.00 90.00 +5 42.00 68.00 10.00 665.00 845.00 90.00 +6 42.00 65.00 10.00 15.00 195.00 90.00 +7 40.00 69.00 20.00 572.00 752.00 90.00 +8 40.00 66.00 20.00 108.00 288.00 90.00 +9 38.00 68.00 20.00 200.00 380.00 90.00 +10 38.00 70.00 10.00 480.00 660.00 90.00 +11 35.00 66.00 10.00 294.00 474.00 90.00 +12 35.00 69.00 10.00 387.00 567.00 90.00 +13 25.00 85.00 20.00 597.00 777.00 90.00 +14 22.00 75.00 30.00 30.00 210.00 90.00 +15 22.00 85.00 10.00 504.00 684.00 90.00 +16 20.00 80.00 40.00 317.00 497.00 90.00 +17 20.00 85.00 40.00 412.00 592.00 90.00 +18 18.00 75.00 20.00 34.00 214.00 90.00 +19 15.00 75.00 20.00 127.00 307.00 90.00 +20 15.00 80.00 10.00 222.00 402.00 90.00 +21 30.00 50.00 10.00 10.00 190.00 90.00 +22 30.00 52.00 20.00 850.00 1030.00 90.00 +23 28.00 52.00 20.00 758.00 938.00 90.00 +24 28.00 55.00 10.00 665.00 845.00 90.00 +25 25.00 50.00 10.00 15.00 195.00 90.00 +26 25.00 52.00 40.00 107.00 287.00 90.00 +27 25.00 55.00 10.00 572.00 752.00 90.00 +28 23.00 52.00 10.00 199.00 379.00 90.00 +29 23.00 55.00 20.00 480.00 660.00 90.00 +30 20.00 50.00 10.00 292.00 472.00 90.00 +31 20.00 55.00 10.00 387.00 567.00 90.00 +32 10.00 35.00 20.00 129.00 309.00 90.00 +33 10.00 40.00 30.00 31.00 211.00 90.00 +34 8.00 40.00 40.00 33.00 213.00 90.00 +35 8.00 45.00 20.00 694.00 874.00 90.00 +36 5.00 35.00 10.00 224.00 404.00 90.00 +37 5.00 45.00 10.00 601.00 781.00 90.00 +38 2.00 40.00 20.00 319.00 499.00 90.00 +39 0.00 40.00 30.00 411.00 591.00 90.00 +40 0.00 45.00 20.00 506.00 686.00 90.00 +41 35.00 30.00 10.00 203.00 383.00 90.00 +42 35.00 32.00 10.00 111.00 291.00 90.00 +43 33.00 32.00 20.00 19.00 199.00 90.00 +44 33.00 35.00 10.00 16.00 196.00 90.00 +45 32.00 30.00 10.00 296.00 476.00 90.00 +46 30.00 30.00 10.00 481.00 661.00 90.00 +47 30.00 32.00 30.00 389.00 569.00 90.00 +48 30.00 35.00 10.00 947.00 1127.00 90.00 +49 28.00 30.00 10.00 573.00 753.00 90.00 +50 28.00 35.00 10.00 944.00 1124.00 90.00 +51 26.00 32.00 10.00 758.00 938.00 90.00 +52 25.00 30.00 10.00 666.00 846.00 90.00 +53 25.00 35.00 10.00 851.00 1031.00 90.00 +54 44.00 5.00 20.00 227.00 407.00 90.00 +55 42.00 10.00 40.00 132.00 312.00 90.00 +56 42.00 15.00 10.00 37.00 217.00 90.00 +57 40.00 5.00 30.00 321.00 501.00 90.00 +58 40.00 15.00 40.00 35.00 215.00 90.00 +59 38.00 5.00 30.00 413.00 593.00 90.00 +60 38.00 15.00 10.00 606.00 786.00 90.00 +61 35.00 5.00 20.00 506.00 686.00 90.00 +62 50.00 30.00 10.00 481.00 661.00 90.00 +63 50.00 35.00 20.00 200.00 380.00 90.00 +64 50.00 40.00 50.00 105.00 285.00 90.00 +65 48.00 30.00 10.00 573.00 753.00 90.00 +66 48.00 40.00 10.00 13.00 193.00 90.00 +67 47.00 35.00 10.00 761.00 941.00 90.00 +68 47.00 40.00 10.00 12.00 192.00 90.00 +69 45.00 30.00 10.00 666.00 846.00 90.00 +70 45.00 35.00 10.00 853.00 1033.00 90.00 +71 95.00 30.00 30.00 332.00 512.00 90.00 +72 95.00 35.00 20.00 237.00 417.00 90.00 +73 53.00 30.00 10.00 388.00 568.00 90.00 +74 92.00 30.00 10.00 425.00 605.00 90.00 +75 53.00 35.00 50.00 293.00 473.00 90.00 +76 45.00 65.00 20.00 943.00 1123.00 90.00 +77 90.00 35.00 10.00 142.00 322.00 90.00 +78 88.00 30.00 10.00 519.00 699.00 90.00 +79 88.00 35.00 20.00 50.00 230.00 90.00 +80 87.00 30.00 10.00 610.00 790.00 90.00 +81 85.00 25.00 10.00 705.00 885.00 90.00 +82 85.00 35.00 30.00 47.00 227.00 90.00 +83 75.00 55.00 20.00 305.00 485.00 90.00 +84 72.00 55.00 10.00 212.00 392.00 90.00 +85 70.00 58.00 20.00 401.00 581.00 90.00 +86 68.00 60.00 30.00 494.00 674.00 90.00 +87 66.00 55.00 10.00 116.00 296.00 90.00 +88 65.00 55.00 20.00 25.00 205.00 90.00 +89 65.00 60.00 30.00 587.00 767.00 90.00 +90 63.00 58.00 10.00 680.00 860.00 90.00 +91 60.00 55.00 10.00 20.00 200.00 90.00 +92 60.00 60.00 10.00 773.00 953.00 90.00 +93 67.00 85.00 20.00 315.00 495.00 90.00 +94 65.00 85.00 40.00 407.00 587.00 90.00 +95 65.00 82.00 10.00 221.00 401.00 90.00 +96 62.00 80.00 30.00 128.00 308.00 90.00 +97 60.00 80.00 10.00 36.00 216.00 90.00 +98 60.00 85.00 30.00 502.00 682.00 90.00 +99 58.00 75.00 20.00 30.00 210.00 90.00 +100 55.00 80.00 10.00 692.00 872.00 90.00 +101 55.00 85.00 20.00 597.00 777.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c108.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c108.dat new file mode 100644 index 000000000..a2d5f08f6 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c108.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 830.00 1049.00 90.00 +3 45.00 70.00 30.00 756.00 939.00 90.00 +4 42.00 66.00 10.00 16.00 336.00 90.00 +5 42.00 68.00 10.00 643.00 866.00 90.00 +6 42.00 65.00 10.00 15.00 226.00 90.00 +7 40.00 69.00 20.00 499.00 824.00 90.00 +8 40.00 66.00 20.00 87.00 308.00 90.00 +9 38.00 68.00 20.00 150.00 429.00 90.00 +10 38.00 70.00 10.00 429.00 710.00 90.00 +11 35.00 66.00 10.00 279.00 488.00 90.00 +12 35.00 69.00 10.00 363.00 590.00 90.00 +13 25.00 85.00 20.00 547.00 826.00 90.00 +14 22.00 75.00 30.00 30.00 280.00 90.00 +15 22.00 85.00 10.00 489.00 698.00 90.00 +16 20.00 80.00 40.00 318.00 495.00 90.00 +17 20.00 85.00 40.00 394.00 609.00 90.00 +18 18.00 75.00 20.00 33.00 226.00 90.00 +19 15.00 75.00 20.00 68.00 365.00 90.00 +20 15.00 80.00 10.00 176.00 447.00 90.00 +21 30.00 50.00 10.00 10.00 265.00 90.00 +22 30.00 52.00 20.00 836.00 1043.00 90.00 +23 28.00 52.00 20.00 704.00 991.00 90.00 +24 28.00 55.00 10.00 664.00 845.00 90.00 +25 25.00 50.00 10.00 15.00 333.00 90.00 +26 25.00 52.00 40.00 88.00 305.00 90.00 +27 25.00 55.00 10.00 502.00 821.00 90.00 +28 23.00 52.00 10.00 179.00 398.00 90.00 +29 23.00 55.00 20.00 476.00 663.00 90.00 +30 20.00 50.00 10.00 288.00 475.00 90.00 +31 20.00 55.00 10.00 368.00 585.00 90.00 +32 10.00 35.00 20.00 144.00 293.00 90.00 +33 10.00 40.00 30.00 31.00 309.00 90.00 +34 8.00 40.00 40.00 33.00 313.00 90.00 +35 8.00 45.00 20.00 655.00 912.00 90.00 +36 5.00 35.00 10.00 191.00 436.00 90.00 +37 5.00 45.00 10.00 588.00 793.00 90.00 +38 2.00 40.00 20.00 305.00 512.00 90.00 +39 0.00 40.00 30.00 414.00 587.00 90.00 +40 0.00 45.00 20.00 481.00 710.00 90.00 +41 35.00 30.00 10.00 180.00 405.00 90.00 +42 35.00 32.00 10.00 63.00 338.00 90.00 +43 33.00 32.00 20.00 19.00 345.00 90.00 +44 33.00 35.00 10.00 16.00 273.00 90.00 +45 32.00 30.00 10.00 278.00 493.00 90.00 +46 30.00 30.00 10.00 453.00 688.00 90.00 +47 30.00 32.00 30.00 355.00 602.00 90.00 +48 30.00 35.00 10.00 837.00 1127.00 90.00 +49 28.00 30.00 10.00 539.00 786.00 90.00 +50 28.00 35.00 10.00 867.00 1126.00 90.00 +51 26.00 32.00 10.00 719.00 976.00 90.00 +52 25.00 30.00 10.00 635.00 876.00 90.00 +53 25.00 35.00 10.00 825.00 1056.00 90.00 +54 44.00 5.00 20.00 193.00 440.00 90.00 +55 42.00 10.00 40.00 78.00 365.00 90.00 +56 42.00 15.00 10.00 35.00 287.00 90.00 +57 40.00 5.00 30.00 308.00 513.00 90.00 +58 40.00 15.00 40.00 35.00 246.00 90.00 +59 38.00 5.00 30.00 376.00 629.00 90.00 +60 38.00 15.00 10.00 519.00 872.00 90.00 +61 35.00 5.00 20.00 463.00 728.00 90.00 +62 50.00 30.00 10.00 412.00 729.00 90.00 +63 50.00 35.00 20.00 181.00 398.00 90.00 +64 50.00 40.00 50.00 100.00 289.00 90.00 +65 48.00 30.00 10.00 539.00 786.00 90.00 +66 48.00 40.00 10.00 12.00 223.00 90.00 +67 47.00 35.00 10.00 753.00 948.00 90.00 +68 47.00 40.00 10.00 12.00 275.00 90.00 +69 45.00 30.00 10.00 669.00 842.00 90.00 +70 45.00 35.00 10.00 836.00 1049.00 90.00 +71 95.00 30.00 30.00 284.00 559.00 90.00 +72 95.00 35.00 20.00 194.00 459.00 90.00 +73 53.00 30.00 10.00 367.00 588.00 90.00 +74 92.00 30.00 10.00 370.00 659.00 90.00 +75 53.00 35.00 50.00 263.00 502.00 90.00 +76 45.00 65.00 20.00 847.00 1130.00 90.00 +77 90.00 35.00 10.00 119.00 344.00 90.00 +78 88.00 30.00 10.00 469.00 748.00 90.00 +79 88.00 35.00 20.00 50.00 295.00 90.00 +80 87.00 30.00 10.00 573.00 826.00 90.00 +81 85.00 25.00 10.00 694.00 895.00 90.00 +82 85.00 35.00 30.00 47.00 356.00 90.00 +83 75.00 55.00 20.00 293.00 496.00 90.00 +84 72.00 55.00 10.00 154.00 449.00 90.00 +85 70.00 58.00 20.00 360.00 621.00 90.00 +86 68.00 60.00 30.00 470.00 697.00 90.00 +87 66.00 55.00 10.00 76.00 335.00 90.00 +88 65.00 55.00 20.00 25.00 260.00 90.00 +89 65.00 60.00 30.00 551.00 802.00 90.00 +90 63.00 58.00 10.00 640.00 899.00 90.00 +91 60.00 55.00 10.00 20.00 276.00 90.00 +92 60.00 60.00 10.00 756.00 969.00 90.00 +93 67.00 85.00 20.00 257.00 552.00 90.00 +94 65.00 85.00 40.00 409.00 584.00 90.00 +95 65.00 82.00 10.00 209.00 412.00 90.00 +96 62.00 80.00 30.00 130.00 305.00 90.00 +97 60.00 80.00 10.00 36.00 283.00 90.00 +98 60.00 85.00 30.00 470.00 713.00 90.00 +99 58.00 75.00 20.00 30.00 248.00 90.00 +100 55.00 80.00 10.00 628.00 935.00 90.00 +101 55.00 85.00 20.00 530.00 843.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c109.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c109.dat new file mode 100644 index 000000000..4147f4dc5 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c109.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 1236.00 0.00 +2 45.00 68.00 10.00 760.00 1120.00 90.00 +3 45.00 70.00 30.00 668.00 1028.00 90.00 +4 42.00 66.00 10.00 16.00 376.00 90.00 +5 42.00 68.00 10.00 575.00 935.00 90.00 +6 42.00 65.00 10.00 15.00 375.00 90.00 +7 40.00 69.00 20.00 482.00 842.00 90.00 +8 40.00 66.00 20.00 18.00 378.00 90.00 +9 38.00 68.00 20.00 110.00 470.00 90.00 +10 38.00 70.00 10.00 390.00 750.00 90.00 +11 35.00 66.00 10.00 204.00 564.00 90.00 +12 35.00 69.00 10.00 297.00 657.00 90.00 +13 25.00 85.00 20.00 507.00 867.00 90.00 +14 22.00 75.00 30.00 30.00 390.00 90.00 +15 22.00 85.00 10.00 414.00 774.00 90.00 +16 20.00 80.00 40.00 227.00 587.00 90.00 +17 20.00 85.00 40.00 322.00 682.00 90.00 +18 18.00 75.00 20.00 33.00 393.00 90.00 +19 15.00 75.00 20.00 37.00 397.00 90.00 +20 15.00 80.00 10.00 132.00 492.00 90.00 +21 30.00 50.00 10.00 10.00 370.00 90.00 +22 30.00 52.00 20.00 760.00 1120.00 90.00 +23 28.00 52.00 20.00 668.00 1028.00 90.00 +24 28.00 55.00 10.00 575.00 935.00 90.00 +25 25.00 50.00 10.00 15.00 375.00 90.00 +26 25.00 52.00 40.00 17.00 377.00 90.00 +27 25.00 55.00 10.00 482.00 842.00 90.00 +28 23.00 52.00 10.00 109.00 469.00 90.00 +29 23.00 55.00 20.00 390.00 750.00 90.00 +30 20.00 50.00 10.00 202.00 562.00 90.00 +31 20.00 55.00 10.00 297.00 657.00 90.00 +32 10.00 35.00 20.00 39.00 399.00 90.00 +33 10.00 40.00 30.00 31.00 391.00 90.00 +34 8.00 40.00 40.00 33.00 393.00 90.00 +35 8.00 45.00 20.00 604.00 964.00 90.00 +36 5.00 35.00 10.00 134.00 494.00 90.00 +37 5.00 45.00 10.00 511.00 871.00 90.00 +38 2.00 40.00 20.00 229.00 589.00 90.00 +39 0.00 40.00 30.00 321.00 681.00 90.00 +40 0.00 45.00 20.00 416.00 776.00 90.00 +41 35.00 30.00 10.00 113.00 473.00 90.00 +42 35.00 32.00 10.00 21.00 381.00 90.00 +43 33.00 32.00 20.00 19.00 379.00 90.00 +44 33.00 35.00 10.00 16.00 376.00 90.00 +45 32.00 30.00 10.00 206.00 566.00 90.00 +46 30.00 30.00 10.00 391.00 751.00 90.00 +47 30.00 32.00 30.00 299.00 659.00 90.00 +48 30.00 35.00 10.00 767.00 1127.00 90.00 +49 28.00 30.00 10.00 483.00 843.00 90.00 +50 28.00 35.00 10.00 766.00 1126.00 90.00 +51 26.00 32.00 10.00 668.00 1028.00 90.00 +52 25.00 30.00 10.00 576.00 936.00 90.00 +53 25.00 35.00 10.00 761.00 1121.00 90.00 +54 44.00 5.00 20.00 137.00 497.00 90.00 +55 42.00 10.00 40.00 42.00 402.00 90.00 +56 42.00 15.00 10.00 35.00 395.00 90.00 +57 40.00 5.00 30.00 231.00 591.00 90.00 +58 40.00 15.00 40.00 35.00 395.00 90.00 +59 38.00 5.00 30.00 323.00 683.00 90.00 +60 38.00 15.00 10.00 516.00 876.00 90.00 +61 35.00 5.00 20.00 416.00 776.00 90.00 +62 50.00 30.00 10.00 391.00 751.00 90.00 +63 50.00 35.00 20.00 110.00 470.00 90.00 +64 50.00 40.00 50.00 15.00 375.00 90.00 +65 48.00 30.00 10.00 483.00 843.00 90.00 +66 48.00 40.00 10.00 12.00 372.00 90.00 +67 47.00 35.00 10.00 671.00 1031.00 90.00 +68 47.00 40.00 10.00 12.00 372.00 90.00 +69 45.00 30.00 10.00 576.00 936.00 90.00 +70 45.00 35.00 10.00 763.00 1123.00 90.00 +71 95.00 30.00 30.00 242.00 602.00 90.00 +72 95.00 35.00 20.00 147.00 507.00 90.00 +73 53.00 30.00 10.00 298.00 658.00 90.00 +74 92.00 30.00 10.00 335.00 695.00 90.00 +75 53.00 35.00 50.00 203.00 563.00 90.00 +76 45.00 65.00 20.00 770.00 1130.00 90.00 +77 90.00 35.00 10.00 52.00 412.00 90.00 +78 88.00 30.00 10.00 429.00 789.00 90.00 +79 88.00 35.00 20.00 50.00 410.00 90.00 +80 87.00 30.00 10.00 520.00 880.00 90.00 +81 85.00 25.00 10.00 615.00 975.00 90.00 +82 85.00 35.00 30.00 47.00 407.00 90.00 +83 75.00 55.00 20.00 215.00 575.00 90.00 +84 72.00 55.00 10.00 122.00 482.00 90.00 +85 70.00 58.00 20.00 311.00 671.00 90.00 +86 68.00 60.00 30.00 404.00 764.00 90.00 +87 66.00 55.00 10.00 26.00 386.00 90.00 +88 65.00 55.00 20.00 25.00 385.00 90.00 +89 65.00 60.00 30.00 497.00 857.00 90.00 +90 63.00 58.00 10.00 590.00 950.00 90.00 +91 60.00 55.00 10.00 20.00 380.00 90.00 +92 60.00 60.00 10.00 683.00 1043.00 90.00 +93 67.00 85.00 20.00 225.00 585.00 90.00 +94 65.00 85.00 40.00 317.00 677.00 90.00 +95 65.00 82.00 10.00 131.00 491.00 90.00 +96 62.00 80.00 30.00 38.00 398.00 90.00 +97 60.00 80.00 10.00 36.00 396.00 90.00 +98 60.00 85.00 30.00 412.00 772.00 90.00 +99 58.00 75.00 20.00 30.00 390.00 90.00 +100 55.00 80.00 10.00 602.00 962.00 90.00 +101 55.00 85.00 20.00 507.00 867.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c201.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c201.dat new file mode 100644 index 000000000..c94ce24ed --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c201.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 311.00 471.00 90.00 +3 45.00 70.00 30.00 213.00 373.00 90.00 +4 62.00 69.00 10.00 1167.00 1327.00 90.00 +5 60.00 66.00 10.00 1261.00 1421.00 90.00 +6 42.00 65.00 10.00 25.00 185.00 90.00 +7 16.00 42.00 20.00 497.00 657.00 90.00 +8 58.00 70.00 20.00 1073.00 1233.00 90.00 +9 34.00 60.00 20.00 2887.00 3047.00 90.00 +10 28.00 70.00 10.00 2601.00 2761.00 90.00 +11 35.00 66.00 10.00 2791.00 2951.00 90.00 +12 35.00 69.00 10.00 2698.00 2858.00 90.00 +13 25.00 85.00 20.00 2119.00 2279.00 90.00 +14 22.00 75.00 30.00 2405.00 2565.00 90.00 +15 22.00 85.00 10.00 2026.00 2186.00 90.00 +16 20.00 80.00 40.00 2216.00 2376.00 90.00 +17 20.00 85.00 40.00 1934.00 2094.00 90.00 +18 18.00 75.00 20.00 2311.00 2471.00 90.00 +19 15.00 75.00 20.00 1742.00 1902.00 90.00 +20 15.00 80.00 10.00 1837.00 1997.00 90.00 +21 30.00 50.00 10.00 10.00 170.00 90.00 +22 30.00 56.00 20.00 2983.00 3143.00 90.00 +23 28.00 52.00 20.00 22.00 182.00 90.00 +24 14.00 66.00 10.00 1643.00 1803.00 90.00 +25 25.00 50.00 10.00 116.00 276.00 90.00 +26 22.00 66.00 40.00 2504.00 2664.00 90.00 +27 8.00 62.00 10.00 1545.00 1705.00 90.00 +28 23.00 52.00 10.00 209.00 369.00 90.00 +29 4.00 55.00 20.00 1447.00 1607.00 90.00 +30 20.00 50.00 10.00 398.00 558.00 90.00 +31 20.00 55.00 10.00 303.00 463.00 90.00 +32 10.00 35.00 20.00 781.00 941.00 90.00 +33 10.00 40.00 30.00 593.00 753.00 90.00 +34 8.00 40.00 40.00 685.00 845.00 90.00 +35 8.00 45.00 20.00 1346.00 1506.00 90.00 +36 5.00 35.00 10.00 876.00 1036.00 90.00 +37 5.00 45.00 10.00 1253.00 1413.00 90.00 +38 2.00 40.00 20.00 971.00 1131.00 90.00 +39 0.00 40.00 30.00 1063.00 1223.00 90.00 +40 0.00 45.00 20.00 1158.00 1318.00 90.00 +41 36.00 18.00 10.00 1819.00 1979.00 90.00 +42 35.00 32.00 10.00 2758.00 2918.00 90.00 +43 33.00 32.00 20.00 2666.00 2826.00 90.00 +44 33.00 35.00 10.00 2573.00 2733.00 90.00 +45 32.00 20.00 10.00 1913.00 2073.00 90.00 +46 30.00 30.00 10.00 2105.00 2265.00 90.00 +47 34.00 25.00 30.00 2009.00 2169.00 90.00 +48 30.00 35.00 10.00 2480.00 2640.00 90.00 +49 36.00 40.00 10.00 2856.00 3016.00 90.00 +50 48.00 20.00 10.00 967.00 1127.00 90.00 +51 26.00 32.00 10.00 2292.00 2452.00 90.00 +52 25.00 30.00 10.00 2200.00 2360.00 90.00 +53 25.00 35.00 10.00 2385.00 2545.00 90.00 +54 44.00 5.00 20.00 1256.00 1416.00 90.00 +55 42.00 10.00 40.00 1160.00 1320.00 90.00 +56 42.00 15.00 10.00 1065.00 1225.00 90.00 +57 40.00 5.00 30.00 1350.00 1510.00 90.00 +58 38.00 15.00 40.00 1725.00 1885.00 90.00 +59 38.00 5.00 30.00 1442.00 1602.00 90.00 +60 38.00 10.00 10.00 1630.00 1790.00 90.00 +61 35.00 5.00 20.00 1535.00 1695.00 90.00 +62 50.00 30.00 10.00 401.00 561.00 90.00 +63 50.00 35.00 20.00 120.00 280.00 90.00 +64 50.00 40.00 50.00 25.00 185.00 90.00 +65 48.00 30.00 10.00 493.00 653.00 90.00 +66 44.00 25.00 10.00 871.00 1031.00 90.00 +67 47.00 35.00 10.00 588.00 748.00 90.00 +68 47.00 40.00 10.00 12.00 172.00 90.00 +69 42.00 30.00 10.00 776.00 936.00 90.00 +70 45.00 35.00 10.00 680.00 840.00 90.00 +71 95.00 30.00 30.00 2321.00 2481.00 90.00 +72 95.00 35.00 20.00 2226.00 2386.00 90.00 +73 53.00 30.00 10.00 308.00 468.00 90.00 +74 92.00 30.00 10.00 2414.00 2574.00 90.00 +75 53.00 35.00 50.00 213.00 373.00 90.00 +76 45.00 65.00 20.00 118.00 278.00 90.00 +77 90.00 35.00 10.00 2131.00 2291.00 90.00 +78 72.00 45.00 10.00 2900.00 3060.00 90.00 +79 78.00 40.00 20.00 2802.00 2962.00 90.00 +80 87.00 30.00 10.00 2608.00 2768.00 90.00 +81 85.00 25.00 10.00 2513.00 2673.00 90.00 +82 85.00 35.00 30.00 2703.00 2863.00 90.00 +83 75.00 55.00 20.00 1925.00 2085.00 90.00 +84 72.00 55.00 10.00 1832.00 1992.00 90.00 +85 70.00 58.00 20.00 1641.00 1801.00 90.00 +86 86.00 46.00 30.00 2029.00 2189.00 90.00 +87 66.00 55.00 10.00 1736.00 1896.00 90.00 +88 64.00 46.00 20.00 3097.00 3257.00 90.00 +89 65.00 60.00 30.00 1546.00 1706.00 90.00 +90 56.00 64.00 10.00 1355.00 1515.00 90.00 +91 60.00 55.00 10.00 3119.00 3279.00 90.00 +92 60.00 60.00 10.00 1451.00 1611.00 90.00 +93 67.00 85.00 20.00 694.00 854.00 90.00 +94 42.00 58.00 40.00 8.00 168.00 90.00 +95 65.00 82.00 10.00 788.00 948.00 90.00 +96 62.00 80.00 30.00 881.00 1041.00 90.00 +97 62.00 40.00 10.00 3001.00 3161.00 90.00 +98 60.00 85.00 30.00 597.00 757.00 90.00 +99 58.00 75.00 20.00 978.00 1138.00 90.00 +100 55.00 80.00 10.00 407.00 567.00 90.00 +101 55.00 85.00 20.00 502.00 662.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c202.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c202.dat new file mode 100644 index 000000000..456ff628a --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c202.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 0.00 3272.00 90.00 +3 45.00 70.00 30.00 0.00 3279.00 90.00 +4 62.00 69.00 10.00 0.00 3270.00 90.00 +5 60.00 66.00 10.00 1261.00 1421.00 90.00 +6 42.00 65.00 10.00 0.00 3284.00 90.00 +7 16.00 42.00 20.00 497.00 657.00 90.00 +8 58.00 70.00 20.00 0.00 3273.00 90.00 +9 34.00 60.00 20.00 2887.00 3047.00 90.00 +10 28.00 70.00 10.00 2601.00 2761.00 90.00 +11 35.00 66.00 10.00 2791.00 2951.00 90.00 +12 35.00 69.00 10.00 2698.00 2858.00 90.00 +13 25.00 85.00 20.00 0.00 3261.00 90.00 +14 22.00 75.00 30.00 2405.00 2565.00 90.00 +15 22.00 85.00 10.00 2026.00 2186.00 90.00 +16 20.00 80.00 40.00 2216.00 2376.00 90.00 +17 20.00 85.00 40.00 1934.00 2094.00 90.00 +18 18.00 75.00 20.00 2311.00 2471.00 90.00 +19 15.00 75.00 20.00 1742.00 1902.00 90.00 +20 15.00 80.00 10.00 1837.00 1997.00 90.00 +21 30.00 50.00 10.00 10.00 170.00 90.00 +22 30.00 56.00 20.00 0.00 3288.00 90.00 +23 28.00 52.00 20.00 22.00 182.00 90.00 +24 14.00 66.00 10.00 1643.00 1803.00 90.00 +25 25.00 50.00 10.00 116.00 276.00 90.00 +26 22.00 66.00 40.00 2504.00 2664.00 90.00 +27 8.00 62.00 10.00 0.00 3265.00 90.00 +28 23.00 52.00 10.00 209.00 369.00 90.00 +29 4.00 55.00 20.00 1447.00 1607.00 90.00 +30 20.00 50.00 10.00 398.00 558.00 90.00 +31 20.00 55.00 10.00 303.00 463.00 90.00 +32 10.00 35.00 20.00 0.00 3266.00 90.00 +33 10.00 40.00 30.00 593.00 753.00 90.00 +34 8.00 40.00 40.00 685.00 845.00 90.00 +35 8.00 45.00 20.00 0.00 3267.00 90.00 +36 5.00 35.00 10.00 876.00 1036.00 90.00 +37 5.00 45.00 10.00 1253.00 1413.00 90.00 +38 2.00 40.00 20.00 0.00 3260.00 90.00 +39 0.00 40.00 30.00 1063.00 1223.00 90.00 +40 0.00 45.00 20.00 1158.00 1318.00 90.00 +41 36.00 18.00 10.00 1819.00 1979.00 90.00 +42 35.00 32.00 10.00 2758.00 2918.00 90.00 +43 33.00 32.00 20.00 2666.00 2826.00 90.00 +44 33.00 35.00 10.00 2573.00 2733.00 90.00 +45 32.00 20.00 10.00 1913.00 2073.00 90.00 +46 30.00 30.00 10.00 2105.00 2265.00 90.00 +47 34.00 25.00 30.00 2009.00 2169.00 90.00 +48 30.00 35.00 10.00 2480.00 2640.00 90.00 +49 36.00 40.00 10.00 0.00 3289.00 90.00 +50 48.00 20.00 10.00 967.00 1127.00 90.00 +51 26.00 32.00 10.00 0.00 3277.00 90.00 +52 25.00 30.00 10.00 2200.00 2360.00 90.00 +53 25.00 35.00 10.00 0.00 3278.00 90.00 +54 44.00 5.00 20.00 1256.00 1416.00 90.00 +55 42.00 10.00 40.00 1160.00 1320.00 90.00 +56 42.00 15.00 10.00 1065.00 1225.00 90.00 +57 40.00 5.00 30.00 1350.00 1510.00 90.00 +58 38.00 15.00 40.00 1725.00 1885.00 90.00 +59 38.00 5.00 30.00 1442.00 1602.00 90.00 +60 38.00 10.00 10.00 0.00 3259.00 90.00 +61 35.00 5.00 20.00 1535.00 1695.00 90.00 +62 50.00 30.00 10.00 401.00 561.00 90.00 +63 50.00 35.00 20.00 120.00 280.00 90.00 +64 50.00 40.00 50.00 25.00 185.00 90.00 +65 48.00 30.00 10.00 493.00 653.00 90.00 +66 44.00 25.00 10.00 871.00 1031.00 90.00 +67 47.00 35.00 10.00 588.00 748.00 90.00 +68 47.00 40.00 10.00 12.00 172.00 90.00 +69 42.00 30.00 10.00 776.00 936.00 90.00 +70 45.00 35.00 10.00 680.00 840.00 90.00 +71 95.00 30.00 30.00 2321.00 2481.00 90.00 +72 95.00 35.00 20.00 2226.00 2386.00 90.00 +73 53.00 30.00 10.00 0.00 3276.00 90.00 +74 92.00 30.00 10.00 2414.00 2574.00 90.00 +75 53.00 35.00 50.00 213.00 373.00 90.00 +76 45.00 65.00 20.00 0.00 3284.00 90.00 +77 90.00 35.00 10.00 2131.00 2291.00 90.00 +78 72.00 45.00 10.00 2900.00 3060.00 90.00 +79 78.00 40.00 20.00 2802.00 2962.00 90.00 +80 87.00 30.00 10.00 2608.00 2768.00 90.00 +81 85.00 25.00 10.00 2513.00 2673.00 90.00 +82 85.00 35.00 30.00 2703.00 2863.00 90.00 +83 75.00 55.00 20.00 0.00 3264.00 90.00 +84 72.00 55.00 10.00 0.00 3267.00 90.00 +85 70.00 58.00 20.00 1641.00 1801.00 90.00 +86 86.00 46.00 30.00 0.00 3253.00 90.00 +87 66.00 55.00 10.00 1736.00 1896.00 90.00 +88 64.00 46.00 20.00 3097.00 3257.00 90.00 +89 65.00 60.00 30.00 1546.00 1706.00 90.00 +90 56.00 64.00 10.00 1355.00 1515.00 90.00 +91 60.00 55.00 10.00 3119.00 3279.00 90.00 +92 60.00 60.00 10.00 0.00 3277.00 90.00 +93 67.00 85.00 20.00 694.00 854.00 90.00 +94 42.00 58.00 40.00 8.00 168.00 90.00 +95 65.00 82.00 10.00 0.00 3259.00 90.00 +96 62.00 80.00 30.00 0.00 3262.00 90.00 +97 62.00 40.00 10.00 0.00 3275.00 90.00 +98 60.00 85.00 30.00 597.00 757.00 90.00 +99 58.00 75.00 20.00 0.00 3269.00 90.00 +100 55.00 80.00 10.00 407.00 567.00 90.00 +101 55.00 85.00 20.00 502.00 662.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c203.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c203.dat new file mode 100644 index 000000000..4b72db09a --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c203.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 0.00 3272.00 90.00 +3 45.00 70.00 30.00 0.00 3279.00 90.00 +4 62.00 69.00 10.00 0.00 3270.00 90.00 +5 60.00 66.00 10.00 1261.00 1421.00 90.00 +6 42.00 65.00 10.00 0.00 3284.00 90.00 +7 16.00 42.00 20.00 497.00 657.00 90.00 +8 58.00 70.00 20.00 0.00 3273.00 90.00 +9 34.00 60.00 20.00 2887.00 3047.00 90.00 +10 28.00 70.00 10.00 2601.00 2761.00 90.00 +11 35.00 66.00 10.00 2791.00 2951.00 90.00 +12 35.00 69.00 10.00 2698.00 2858.00 90.00 +13 25.00 85.00 20.00 0.00 3261.00 90.00 +14 22.00 75.00 30.00 2405.00 2565.00 90.00 +15 22.00 85.00 10.00 0.00 3260.00 90.00 +16 20.00 80.00 40.00 2216.00 2376.00 90.00 +17 20.00 85.00 40.00 0.00 3259.00 90.00 +18 18.00 75.00 20.00 2311.00 2471.00 90.00 +19 15.00 75.00 20.00 0.00 3264.00 90.00 +20 15.00 80.00 10.00 0.00 3260.00 90.00 +21 30.00 50.00 10.00 0.00 3290.00 90.00 +22 30.00 56.00 20.00 0.00 3288.00 90.00 +23 28.00 52.00 20.00 22.00 182.00 90.00 +24 14.00 66.00 10.00 1643.00 1803.00 90.00 +25 25.00 50.00 10.00 0.00 3285.00 90.00 +26 22.00 66.00 40.00 2504.00 2664.00 90.00 +27 8.00 62.00 10.00 0.00 3265.00 90.00 +28 23.00 52.00 10.00 209.00 369.00 90.00 +29 4.00 55.00 20.00 0.00 3263.00 90.00 +30 20.00 50.00 10.00 0.00 3280.00 90.00 +31 20.00 55.00 10.00 303.00 463.00 90.00 +32 10.00 35.00 20.00 0.00 3266.00 90.00 +33 10.00 40.00 30.00 0.00 3268.00 90.00 +34 8.00 40.00 40.00 685.00 845.00 90.00 +35 8.00 45.00 20.00 0.00 3267.00 90.00 +36 5.00 35.00 10.00 876.00 1036.00 90.00 +37 5.00 45.00 10.00 1253.00 1413.00 90.00 +38 2.00 40.00 20.00 0.00 3260.00 90.00 +39 0.00 40.00 30.00 1063.00 1223.00 90.00 +40 0.00 45.00 20.00 1158.00 1318.00 90.00 +41 36.00 18.00 10.00 1819.00 1979.00 90.00 +42 35.00 32.00 10.00 2758.00 2918.00 90.00 +43 33.00 32.00 20.00 2666.00 2826.00 90.00 +44 33.00 35.00 10.00 0.00 3283.00 90.00 +45 32.00 20.00 10.00 1913.00 2073.00 90.00 +46 30.00 30.00 10.00 2105.00 2265.00 90.00 +47 34.00 25.00 30.00 0.00 3274.00 90.00 +48 30.00 35.00 10.00 0.00 3281.00 90.00 +49 36.00 40.00 10.00 0.00 3289.00 90.00 +50 48.00 20.00 10.00 967.00 1127.00 90.00 +51 26.00 32.00 10.00 0.00 3277.00 90.00 +52 25.00 30.00 10.00 0.00 3275.00 90.00 +53 25.00 35.00 10.00 0.00 3278.00 90.00 +54 44.00 5.00 20.00 1256.00 1416.00 90.00 +55 42.00 10.00 40.00 0.00 3259.00 90.00 +56 42.00 15.00 10.00 1065.00 1225.00 90.00 +57 40.00 5.00 30.00 1350.00 1510.00 90.00 +58 38.00 15.00 40.00 0.00 3264.00 90.00 +59 38.00 5.00 30.00 1442.00 1602.00 90.00 +60 38.00 10.00 10.00 0.00 3259.00 90.00 +61 35.00 5.00 20.00 0.00 3254.00 90.00 +62 50.00 30.00 10.00 0.00 3277.00 90.00 +63 50.00 35.00 20.00 120.00 280.00 90.00 +64 50.00 40.00 50.00 0.00 3285.00 90.00 +65 48.00 30.00 10.00 493.00 653.00 90.00 +66 44.00 25.00 10.00 871.00 1031.00 90.00 +67 47.00 35.00 10.00 588.00 748.00 90.00 +68 47.00 40.00 10.00 12.00 172.00 90.00 +69 42.00 30.00 10.00 776.00 936.00 90.00 +70 45.00 35.00 10.00 680.00 840.00 90.00 +71 95.00 30.00 30.00 2321.00 2481.00 90.00 +72 95.00 35.00 20.00 0.00 3242.00 90.00 +73 53.00 30.00 10.00 0.00 3276.00 90.00 +74 92.00 30.00 10.00 0.00 3244.00 90.00 +75 53.00 35.00 50.00 213.00 373.00 90.00 +76 45.00 65.00 20.00 0.00 3284.00 90.00 +77 90.00 35.00 10.00 2131.00 2291.00 90.00 +78 72.00 45.00 10.00 2900.00 3060.00 90.00 +79 78.00 40.00 20.00 2802.00 2962.00 90.00 +80 87.00 30.00 10.00 2608.00 2768.00 90.00 +81 85.00 25.00 10.00 2513.00 2673.00 90.00 +82 85.00 35.00 30.00 0.00 3252.00 90.00 +83 75.00 55.00 20.00 0.00 3264.00 90.00 +84 72.00 55.00 10.00 0.00 3267.00 90.00 +85 70.00 58.00 20.00 1641.00 1801.00 90.00 +86 86.00 46.00 30.00 0.00 3253.00 90.00 +87 66.00 55.00 10.00 0.00 3273.00 90.00 +88 64.00 46.00 20.00 3097.00 3257.00 90.00 +89 65.00 60.00 30.00 1546.00 1706.00 90.00 +90 56.00 64.00 10.00 0.00 3278.00 90.00 +91 60.00 55.00 10.00 0.00 3279.00 90.00 +92 60.00 60.00 10.00 0.00 3277.00 90.00 +93 67.00 85.00 20.00 694.00 854.00 90.00 +94 42.00 58.00 40.00 8.00 168.00 90.00 +95 65.00 82.00 10.00 0.00 3259.00 90.00 +96 62.00 80.00 30.00 0.00 3262.00 90.00 +97 62.00 40.00 10.00 0.00 3275.00 90.00 +98 60.00 85.00 30.00 0.00 3259.00 90.00 +99 58.00 75.00 20.00 0.00 3269.00 90.00 +100 55.00 80.00 10.00 407.00 567.00 90.00 +101 55.00 85.00 20.00 502.00 662.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c204.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c204.dat new file mode 100644 index 000000000..9099a34a9 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c204.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 0.00 3272.00 90.00 +3 45.00 70.00 30.00 0.00 3279.00 90.00 +4 62.00 69.00 10.00 0.00 3270.00 90.00 +5 60.00 66.00 10.00 1261.00 1421.00 90.00 +6 42.00 65.00 10.00 0.00 3284.00 90.00 +7 16.00 42.00 20.00 0.00 3274.00 90.00 +8 58.00 70.00 20.00 0.00 3273.00 90.00 +9 34.00 60.00 20.00 2887.00 3047.00 90.00 +10 28.00 70.00 10.00 2601.00 2761.00 90.00 +11 35.00 66.00 10.00 0.00 3283.00 90.00 +12 35.00 69.00 10.00 2698.00 2858.00 90.00 +13 25.00 85.00 20.00 0.00 3261.00 90.00 +14 22.00 75.00 30.00 2405.00 2565.00 90.00 +15 22.00 85.00 10.00 0.00 3260.00 90.00 +16 20.00 80.00 40.00 2216.00 2376.00 90.00 +17 20.00 85.00 40.00 0.00 3259.00 90.00 +18 18.00 75.00 20.00 0.00 3266.00 90.00 +19 15.00 75.00 20.00 0.00 3264.00 90.00 +20 15.00 80.00 10.00 0.00 3260.00 90.00 +21 30.00 50.00 10.00 0.00 3290.00 90.00 +22 30.00 56.00 20.00 0.00 3288.00 90.00 +23 28.00 52.00 20.00 0.00 3287.00 90.00 +24 14.00 66.00 10.00 1643.00 1803.00 90.00 +25 25.00 50.00 10.00 0.00 3285.00 90.00 +26 22.00 66.00 40.00 2504.00 2664.00 90.00 +27 8.00 62.00 10.00 0.00 3265.00 90.00 +28 23.00 52.00 10.00 0.00 3282.00 90.00 +29 4.00 55.00 20.00 0.00 3263.00 90.00 +30 20.00 50.00 10.00 0.00 3280.00 90.00 +31 20.00 55.00 10.00 0.00 3279.00 90.00 +32 10.00 35.00 20.00 0.00 3266.00 90.00 +33 10.00 40.00 30.00 0.00 3268.00 90.00 +34 8.00 40.00 40.00 0.00 3266.00 90.00 +35 8.00 45.00 20.00 0.00 3267.00 90.00 +36 5.00 35.00 10.00 0.00 3261.00 90.00 +37 5.00 45.00 10.00 0.00 3264.00 90.00 +38 2.00 40.00 20.00 0.00 3260.00 90.00 +39 0.00 40.00 30.00 1063.00 1223.00 90.00 +40 0.00 45.00 20.00 0.00 3259.00 90.00 +41 36.00 18.00 10.00 0.00 3267.00 90.00 +42 35.00 32.00 10.00 0.00 3281.00 90.00 +43 33.00 32.00 20.00 0.00 3280.00 90.00 +44 33.00 35.00 10.00 0.00 3283.00 90.00 +45 32.00 20.00 10.00 1913.00 2073.00 90.00 +46 30.00 30.00 10.00 0.00 3277.00 90.00 +47 34.00 25.00 30.00 0.00 3274.00 90.00 +48 30.00 35.00 10.00 0.00 3281.00 90.00 +49 36.00 40.00 10.00 0.00 3289.00 90.00 +50 48.00 20.00 10.00 0.00 3268.00 90.00 +51 26.00 32.00 10.00 0.00 3277.00 90.00 +52 25.00 30.00 10.00 0.00 3275.00 90.00 +53 25.00 35.00 10.00 0.00 3278.00 90.00 +54 44.00 5.00 20.00 1256.00 1416.00 90.00 +55 42.00 10.00 40.00 0.00 3259.00 90.00 +56 42.00 15.00 10.00 1065.00 1225.00 90.00 +57 40.00 5.00 30.00 0.00 3255.00 90.00 +58 38.00 15.00 40.00 0.00 3264.00 90.00 +59 38.00 5.00 30.00 1442.00 1602.00 90.00 +60 38.00 10.00 10.00 0.00 3259.00 90.00 +61 35.00 5.00 20.00 0.00 3254.00 90.00 +62 50.00 30.00 10.00 0.00 3277.00 90.00 +63 50.00 35.00 20.00 120.00 280.00 90.00 +64 50.00 40.00 50.00 0.00 3285.00 90.00 +65 48.00 30.00 10.00 0.00 3278.00 90.00 +66 44.00 25.00 10.00 0.00 3274.00 90.00 +67 47.00 35.00 10.00 0.00 3283.00 90.00 +68 47.00 40.00 10.00 12.00 172.00 90.00 +69 42.00 30.00 10.00 0.00 3279.00 90.00 +70 45.00 35.00 10.00 680.00 840.00 90.00 +71 95.00 30.00 30.00 0.00 3241.00 90.00 +72 95.00 35.00 20.00 0.00 3242.00 90.00 +73 53.00 30.00 10.00 0.00 3276.00 90.00 +74 92.00 30.00 10.00 0.00 3244.00 90.00 +75 53.00 35.00 50.00 213.00 373.00 90.00 +76 45.00 65.00 20.00 0.00 3284.00 90.00 +77 90.00 35.00 10.00 2131.00 2291.00 90.00 +78 72.00 45.00 10.00 2900.00 3060.00 90.00 +79 78.00 40.00 20.00 0.00 3260.00 90.00 +80 87.00 30.00 10.00 2608.00 2768.00 90.00 +81 85.00 25.00 10.00 0.00 3248.00 90.00 +82 85.00 35.00 30.00 0.00 3252.00 90.00 +83 75.00 55.00 20.00 0.00 3264.00 90.00 +84 72.00 55.00 10.00 0.00 3267.00 90.00 +85 70.00 58.00 20.00 1641.00 1801.00 90.00 +86 86.00 46.00 30.00 0.00 3253.00 90.00 +87 66.00 55.00 10.00 0.00 3273.00 90.00 +88 64.00 46.00 20.00 3097.00 3257.00 90.00 +89 65.00 60.00 30.00 0.00 3273.00 90.00 +90 56.00 64.00 10.00 0.00 3278.00 90.00 +91 60.00 55.00 10.00 0.00 3279.00 90.00 +92 60.00 60.00 10.00 0.00 3277.00 90.00 +93 67.00 85.00 20.00 694.00 854.00 90.00 +94 42.00 58.00 40.00 0.00 3291.00 90.00 +95 65.00 82.00 10.00 0.00 3259.00 90.00 +96 62.00 80.00 30.00 0.00 3262.00 90.00 +97 62.00 40.00 10.00 0.00 3275.00 90.00 +98 60.00 85.00 30.00 0.00 3259.00 90.00 +99 58.00 75.00 20.00 0.00 3269.00 90.00 +100 55.00 80.00 10.00 407.00 567.00 90.00 +101 55.00 85.00 20.00 502.00 662.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c205.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c205.dat new file mode 100644 index 000000000..78e4ee456 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c205.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 231.00 551.00 90.00 +3 45.00 70.00 30.00 133.00 453.00 90.00 +4 62.00 69.00 10.00 1087.00 1407.00 90.00 +5 60.00 66.00 10.00 1181.00 1501.00 90.00 +6 42.00 65.00 10.00 15.00 335.00 90.00 +7 16.00 42.00 20.00 417.00 737.00 90.00 +8 58.00 70.00 20.00 993.00 1313.00 90.00 +9 34.00 60.00 20.00 2807.00 3127.00 90.00 +10 28.00 70.00 10.00 2521.00 2841.00 90.00 +11 35.00 66.00 10.00 2711.00 3031.00 90.00 +12 35.00 69.00 10.00 2618.00 2938.00 90.00 +13 25.00 85.00 20.00 2039.00 2359.00 90.00 +14 22.00 75.00 30.00 2325.00 2645.00 90.00 +15 22.00 85.00 10.00 1946.00 2266.00 90.00 +16 20.00 80.00 40.00 2136.00 2456.00 90.00 +17 20.00 85.00 40.00 1854.00 2174.00 90.00 +18 18.00 75.00 20.00 2231.00 2551.00 90.00 +19 15.00 75.00 20.00 1662.00 1982.00 90.00 +20 15.00 80.00 10.00 1757.00 2077.00 90.00 +21 30.00 50.00 10.00 10.00 330.00 90.00 +22 30.00 56.00 20.00 2903.00 3223.00 90.00 +23 28.00 52.00 20.00 12.00 332.00 90.00 +24 14.00 66.00 10.00 1563.00 1883.00 90.00 +25 25.00 50.00 10.00 36.00 356.00 90.00 +26 22.00 66.00 40.00 2424.00 2744.00 90.00 +27 8.00 62.00 10.00 1465.00 1785.00 90.00 +28 23.00 52.00 10.00 129.00 449.00 90.00 +29 4.00 55.00 20.00 1367.00 1687.00 90.00 +30 20.00 50.00 10.00 318.00 638.00 90.00 +31 20.00 55.00 10.00 223.00 543.00 90.00 +32 10.00 35.00 20.00 701.00 1021.00 90.00 +33 10.00 40.00 30.00 513.00 833.00 90.00 +34 8.00 40.00 40.00 605.00 925.00 90.00 +35 8.00 45.00 20.00 1266.00 1586.00 90.00 +36 5.00 35.00 10.00 796.00 1116.00 90.00 +37 5.00 45.00 10.00 1173.00 1493.00 90.00 +38 2.00 40.00 20.00 891.00 1211.00 90.00 +39 0.00 40.00 30.00 983.00 1303.00 90.00 +40 0.00 45.00 20.00 1078.00 1398.00 90.00 +41 36.00 18.00 10.00 1739.00 2059.00 90.00 +42 35.00 32.00 10.00 2678.00 2998.00 90.00 +43 33.00 32.00 20.00 2586.00 2906.00 90.00 +44 33.00 35.00 10.00 2493.00 2813.00 90.00 +45 32.00 20.00 10.00 1833.00 2153.00 90.00 +46 30.00 30.00 10.00 2025.00 2345.00 90.00 +47 34.00 25.00 30.00 1929.00 2249.00 90.00 +48 30.00 35.00 10.00 2400.00 2720.00 90.00 +49 36.00 40.00 10.00 2776.00 3096.00 90.00 +50 48.00 20.00 10.00 887.00 1207.00 90.00 +51 26.00 32.00 10.00 2212.00 2532.00 90.00 +52 25.00 30.00 10.00 2120.00 2440.00 90.00 +53 25.00 35.00 10.00 2305.00 2625.00 90.00 +54 44.00 5.00 20.00 1176.00 1496.00 90.00 +55 42.00 10.00 40.00 1080.00 1400.00 90.00 +56 42.00 15.00 10.00 985.00 1305.00 90.00 +57 40.00 5.00 30.00 1270.00 1590.00 90.00 +58 38.00 15.00 40.00 1645.00 1965.00 90.00 +59 38.00 5.00 30.00 1362.00 1682.00 90.00 +60 38.00 10.00 10.00 1550.00 1870.00 90.00 +61 35.00 5.00 20.00 1455.00 1775.00 90.00 +62 50.00 30.00 10.00 321.00 641.00 90.00 +63 50.00 35.00 20.00 40.00 360.00 90.00 +64 50.00 40.00 50.00 14.00 334.00 90.00 +65 48.00 30.00 10.00 413.00 733.00 90.00 +66 44.00 25.00 10.00 791.00 1111.00 90.00 +67 47.00 35.00 10.00 508.00 828.00 90.00 +68 47.00 40.00 10.00 12.00 332.00 90.00 +69 42.00 30.00 10.00 696.00 1016.00 90.00 +70 45.00 35.00 10.00 600.00 920.00 90.00 +71 95.00 30.00 30.00 2241.00 2561.00 90.00 +72 95.00 35.00 20.00 2146.00 2466.00 90.00 +73 53.00 30.00 10.00 228.00 548.00 90.00 +74 92.00 30.00 10.00 2334.00 2654.00 90.00 +75 53.00 35.00 50.00 133.00 453.00 90.00 +76 45.00 65.00 20.00 38.00 358.00 90.00 +77 90.00 35.00 10.00 2051.00 2371.00 90.00 +78 72.00 45.00 10.00 2820.00 3140.00 90.00 +79 78.00 40.00 20.00 2722.00 3042.00 90.00 +80 87.00 30.00 10.00 2528.00 2848.00 90.00 +81 85.00 25.00 10.00 2433.00 2753.00 90.00 +82 85.00 35.00 30.00 2623.00 2943.00 90.00 +83 75.00 55.00 20.00 1845.00 2165.00 90.00 +84 72.00 55.00 10.00 1752.00 2072.00 90.00 +85 70.00 58.00 20.00 1561.00 1881.00 90.00 +86 86.00 46.00 30.00 1949.00 2269.00 90.00 +87 66.00 55.00 10.00 1656.00 1976.00 90.00 +88 64.00 46.00 20.00 2955.00 3275.00 90.00 +89 65.00 60.00 30.00 1466.00 1786.00 90.00 +90 56.00 64.00 10.00 1275.00 1595.00 90.00 +91 60.00 55.00 10.00 2959.00 3279.00 90.00 +92 60.00 60.00 10.00 1371.00 1691.00 90.00 +93 67.00 85.00 20.00 614.00 934.00 90.00 +94 42.00 58.00 40.00 8.00 328.00 90.00 +95 65.00 82.00 10.00 708.00 1028.00 90.00 +96 62.00 80.00 30.00 801.00 1121.00 90.00 +97 62.00 40.00 10.00 2921.00 3241.00 90.00 +98 60.00 85.00 30.00 517.00 837.00 90.00 +99 58.00 75.00 20.00 898.00 1218.00 90.00 +100 55.00 80.00 10.00 327.00 647.00 90.00 +101 55.00 85.00 20.00 422.00 742.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c206.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c206.dat new file mode 100644 index 000000000..7c7938e9b --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c206.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 213.00 568.00 90.00 +3 45.00 70.00 30.00 22.00 563.00 90.00 +4 62.00 69.00 10.00 1030.00 1463.00 90.00 +5 60.00 66.00 10.00 1154.00 1527.00 90.00 +6 42.00 65.00 10.00 15.00 402.00 90.00 +7 16.00 42.00 20.00 331.00 822.00 90.00 +8 58.00 70.00 20.00 965.00 1340.00 90.00 +9 34.00 60.00 20.00 2653.00 3280.00 90.00 +10 28.00 70.00 10.00 2385.00 2976.00 90.00 +11 35.00 66.00 10.00 2628.00 3113.00 90.00 +12 35.00 69.00 10.00 2603.00 2952.00 90.00 +13 25.00 85.00 20.00 1985.00 2412.00 90.00 +14 22.00 75.00 30.00 2310.00 2659.00 90.00 +15 22.00 85.00 10.00 1846.00 2365.00 90.00 +16 20.00 80.00 40.00 2077.00 2514.00 90.00 +17 20.00 85.00 40.00 1763.00 2264.00 90.00 +18 18.00 75.00 20.00 2143.00 2638.00 90.00 +19 15.00 75.00 20.00 1560.00 2083.00 90.00 +20 15.00 80.00 10.00 1689.00 2144.00 90.00 +21 30.00 50.00 10.00 10.00 645.00 90.00 +22 30.00 56.00 20.00 2675.00 3288.00 90.00 +23 28.00 52.00 20.00 12.00 505.00 90.00 +24 14.00 66.00 10.00 1519.00 1926.00 90.00 +25 25.00 50.00 10.00 23.00 368.00 90.00 +26 22.00 66.00 40.00 2380.00 2787.00 90.00 +27 8.00 62.00 10.00 1330.00 1919.00 90.00 +28 23.00 52.00 10.00 93.00 484.00 90.00 +29 4.00 55.00 20.00 1268.00 1785.00 90.00 +30 20.00 50.00 10.00 168.00 787.00 90.00 +31 20.00 55.00 10.00 170.00 595.00 90.00 +32 10.00 35.00 20.00 585.00 1136.00 90.00 +33 10.00 40.00 30.00 448.00 897.00 90.00 +34 8.00 40.00 40.00 499.00 1030.00 90.00 +35 8.00 45.00 20.00 1190.00 1661.00 90.00 +36 5.00 35.00 10.00 666.00 1245.00 90.00 +37 5.00 45.00 10.00 1076.00 1589.00 90.00 +38 2.00 40.00 20.00 772.00 1329.00 90.00 +39 0.00 40.00 30.00 890.00 1395.00 90.00 +40 0.00 45.00 20.00 1036.00 1439.00 90.00 +41 36.00 18.00 10.00 1612.00 2185.00 90.00 +42 35.00 32.00 10.00 2599.00 3076.00 90.00 +43 33.00 32.00 20.00 2529.00 2962.00 90.00 +44 33.00 35.00 10.00 2463.00 2842.00 90.00 +45 32.00 20.00 10.00 1745.00 2240.00 90.00 +46 30.00 30.00 10.00 1932.00 2437.00 90.00 +47 34.00 25.00 30.00 1884.00 2293.00 90.00 +48 30.00 35.00 10.00 2348.00 2771.00 90.00 +49 36.00 40.00 10.00 2715.00 3156.00 90.00 +50 48.00 20.00 10.00 812.00 1281.00 90.00 +51 26.00 32.00 10.00 2018.00 2725.00 90.00 +52 25.00 30.00 10.00 2015.00 2544.00 90.00 +53 25.00 35.00 10.00 2201.00 2728.00 90.00 +54 44.00 5.00 20.00 1078.00 1593.00 90.00 +55 42.00 10.00 40.00 998.00 1481.00 90.00 +56 42.00 15.00 10.00 897.00 1392.00 90.00 +57 40.00 5.00 30.00 1199.00 1660.00 90.00 +58 38.00 15.00 40.00 1552.00 2057.00 90.00 +59 38.00 5.00 30.00 1263.00 1780.00 90.00 +60 38.00 10.00 10.00 1498.00 1921.00 90.00 +61 35.00 5.00 20.00 1325.00 1904.00 90.00 +62 50.00 30.00 10.00 223.00 738.00 90.00 +63 50.00 35.00 20.00 18.00 474.00 90.00 +64 50.00 40.00 50.00 14.00 360.00 90.00 +65 48.00 30.00 10.00 246.00 899.00 90.00 +66 44.00 25.00 10.00 704.00 1197.00 90.00 +67 47.00 35.00 10.00 393.00 942.00 90.00 +68 47.00 40.00 10.00 12.00 424.00 90.00 +69 42.00 30.00 10.00 641.00 1070.00 90.00 +70 45.00 35.00 10.00 534.00 985.00 90.00 +71 95.00 30.00 30.00 2119.00 2682.00 90.00 +72 95.00 35.00 20.00 2079.00 2532.00 90.00 +73 53.00 30.00 10.00 131.00 644.00 90.00 +74 92.00 30.00 10.00 2169.00 2818.00 90.00 +75 53.00 35.00 50.00 87.00 498.00 90.00 +76 45.00 65.00 20.00 15.00 607.00 90.00 +77 90.00 35.00 10.00 2002.00 2419.00 90.00 +78 72.00 45.00 10.00 2701.00 3258.00 90.00 +79 78.00 40.00 20.00 2599.00 3164.00 90.00 +80 87.00 30.00 10.00 2505.00 2870.00 90.00 +81 85.00 25.00 10.00 2369.00 2816.00 90.00 +82 85.00 35.00 30.00 2563.00 3002.00 90.00 +83 75.00 55.00 20.00 1783.00 2226.00 90.00 +84 72.00 55.00 10.00 1591.00 2232.00 90.00 +85 70.00 58.00 20.00 1513.00 1928.00 90.00 +86 86.00 46.00 30.00 1829.00 2388.00 90.00 +87 66.00 55.00 10.00 1604.00 2027.00 90.00 +88 64.00 46.00 20.00 2976.00 3275.00 90.00 +89 65.00 60.00 30.00 1338.00 1913.00 90.00 +90 56.00 64.00 10.00 1116.00 1753.00 90.00 +91 60.00 55.00 10.00 2789.00 3279.00 90.00 +92 60.00 60.00 10.00 1349.00 1712.00 90.00 +93 67.00 85.00 20.00 518.00 1029.00 90.00 +94 42.00 58.00 40.00 8.00 509.00 90.00 +95 65.00 82.00 10.00 549.00 1186.00 90.00 +96 62.00 80.00 30.00 744.00 1177.00 90.00 +97 62.00 40.00 10.00 2713.00 3275.00 90.00 +98 60.00 85.00 30.00 397.00 956.00 90.00 +99 58.00 75.00 20.00 839.00 1276.00 90.00 +100 55.00 80.00 10.00 272.00 701.00 90.00 +101 55.00 85.00 20.00 373.00 790.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c207.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c207.dat new file mode 100644 index 000000000..d3d17bd46 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c207.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 302.00 479.00 90.00 +3 45.00 70.00 30.00 157.00 428.00 90.00 +4 62.00 69.00 10.00 1138.00 1355.00 90.00 +5 60.00 66.00 10.00 1247.00 1434.00 90.00 +6 42.00 65.00 10.00 15.00 208.00 90.00 +7 16.00 42.00 20.00 209.00 944.00 90.00 +8 58.00 70.00 20.00 1059.00 1246.00 90.00 +9 34.00 60.00 20.00 2035.00 3288.00 90.00 +10 28.00 70.00 10.00 2090.00 3271.00 90.00 +11 35.00 66.00 10.00 2311.00 3283.00 90.00 +12 35.00 69.00 10.00 2428.00 3127.00 90.00 +13 25.00 85.00 20.00 1772.00 2625.00 90.00 +14 22.00 75.00 30.00 2135.00 2834.00 90.00 +15 22.00 85.00 10.00 1586.00 2625.00 90.00 +16 20.00 80.00 40.00 1858.00 2733.00 90.00 +17 20.00 85.00 40.00 1512.00 2515.00 90.00 +18 18.00 75.00 20.00 1895.00 2886.00 90.00 +19 15.00 75.00 20.00 1299.00 2344.00 90.00 +20 15.00 80.00 10.00 1461.00 2372.00 90.00 +21 30.00 50.00 10.00 10.00 963.00 90.00 +22 30.00 56.00 20.00 2062.00 3288.00 90.00 +23 28.00 52.00 20.00 12.00 752.00 90.00 +24 14.00 66.00 10.00 1316.00 2129.00 90.00 +25 25.00 50.00 10.00 15.00 532.00 90.00 +26 22.00 66.00 40.00 2177.00 2990.00 90.00 +27 8.00 62.00 10.00 1036.00 2213.00 90.00 +28 23.00 52.00 10.00 17.00 602.00 90.00 +29 4.00 55.00 20.00 1010.00 2043.00 90.00 +30 20.00 50.00 10.00 20.00 948.00 90.00 +31 20.00 55.00 10.00 63.00 702.00 90.00 +32 10.00 35.00 20.00 309.00 1412.00 90.00 +33 10.00 40.00 30.00 336.00 1009.00 90.00 +34 8.00 40.00 40.00 234.00 1295.00 90.00 +35 8.00 45.00 20.00 954.00 1897.00 90.00 +36 5.00 35.00 10.00 377.00 1534.00 90.00 +37 5.00 45.00 10.00 819.00 1846.00 90.00 +38 2.00 40.00 20.00 494.00 1607.00 90.00 +39 0.00 40.00 30.00 637.00 1648.00 90.00 +40 0.00 45.00 20.00 834.00 1641.00 90.00 +41 36.00 18.00 10.00 1468.00 2329.00 90.00 +42 35.00 32.00 10.00 2480.00 3195.00 90.00 +43 33.00 32.00 20.00 2421.00 3070.00 90.00 +44 33.00 35.00 10.00 2368.00 2937.00 90.00 +45 32.00 20.00 10.00 1621.00 2364.00 90.00 +46 30.00 30.00 10.00 1805.00 2564.00 90.00 +47 34.00 25.00 30.00 1782.00 2395.00 90.00 +48 30.00 35.00 10.00 2242.00 2877.00 90.00 +49 36.00 40.00 10.00 2605.00 3266.00 90.00 +50 48.00 20.00 10.00 812.00 1281.00 90.00 +51 26.00 32.00 10.00 1842.00 2901.00 90.00 +52 25.00 30.00 10.00 1883.00 2676.00 90.00 +53 25.00 35.00 10.00 2070.00 2859.00 90.00 +54 44.00 5.00 20.00 1078.00 1593.00 90.00 +55 42.00 10.00 40.00 998.00 1481.00 90.00 +56 42.00 15.00 10.00 897.00 1392.00 90.00 +57 40.00 5.00 30.00 1083.00 1776.00 90.00 +58 38.00 15.00 40.00 1426.00 2183.00 90.00 +59 38.00 5.00 30.00 1133.00 1910.00 90.00 +60 38.00 10.00 10.00 1392.00 2027.00 90.00 +61 35.00 5.00 20.00 1180.00 2049.00 90.00 +62 50.00 30.00 10.00 223.00 738.00 90.00 +63 50.00 35.00 20.00 18.00 474.00 90.00 +64 50.00 40.00 50.00 14.00 360.00 90.00 +65 48.00 30.00 10.00 246.00 899.00 90.00 +66 44.00 25.00 10.00 704.00 1197.00 90.00 +67 47.00 35.00 10.00 393.00 942.00 90.00 +68 47.00 40.00 10.00 12.00 424.00 90.00 +69 42.00 30.00 10.00 641.00 1070.00 90.00 +70 45.00 35.00 10.00 534.00 985.00 90.00 +71 95.00 30.00 30.00 2119.00 2682.00 90.00 +72 95.00 35.00 20.00 2192.00 2419.00 90.00 +73 53.00 30.00 10.00 131.00 644.00 90.00 +74 92.00 30.00 10.00 2169.00 2818.00 90.00 +75 53.00 35.00 50.00 87.00 498.00 90.00 +76 45.00 65.00 20.00 49.00 346.00 90.00 +77 90.00 35.00 10.00 2106.00 2315.00 90.00 +78 72.00 45.00 10.00 2701.00 3258.00 90.00 +79 78.00 40.00 20.00 2599.00 3164.00 90.00 +80 87.00 30.00 10.00 2505.00 2870.00 90.00 +81 85.00 25.00 10.00 2369.00 2816.00 90.00 +82 85.00 35.00 30.00 2563.00 3002.00 90.00 +83 75.00 55.00 20.00 1894.00 2115.00 90.00 +84 72.00 55.00 10.00 1751.00 2072.00 90.00 +85 70.00 58.00 20.00 1617.00 1824.00 90.00 +86 86.00 46.00 30.00 1969.00 2248.00 90.00 +87 66.00 55.00 10.00 1710.00 1921.00 90.00 +88 64.00 46.00 20.00 2976.00 3275.00 90.00 +89 65.00 60.00 30.00 1482.00 1769.00 90.00 +90 56.00 64.00 10.00 1275.00 1594.00 90.00 +91 60.00 55.00 10.00 2789.00 3279.00 90.00 +92 60.00 60.00 10.00 1440.00 1621.00 90.00 +93 67.00 85.00 20.00 646.00 901.00 90.00 +94 42.00 58.00 40.00 8.00 258.00 90.00 +95 65.00 82.00 10.00 708.00 1027.00 90.00 +96 62.00 80.00 30.00 852.00 1069.00 90.00 +97 62.00 40.00 10.00 2713.00 3275.00 90.00 +98 60.00 85.00 30.00 537.00 816.00 90.00 +99 58.00 75.00 20.00 948.00 1167.00 90.00 +100 55.00 80.00 10.00 379.00 594.00 90.00 +101 55.00 85.00 20.00 477.00 686.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c208.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c208.dat new file mode 100644 index 000000000..e487603bb --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/c208.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 3390.00 0.00 +2 52.00 75.00 10.00 71.00 711.00 90.00 +3 45.00 70.00 30.00 20.00 660.00 90.00 +4 62.00 69.00 10.00 927.00 1567.00 90.00 +5 60.00 66.00 10.00 1021.00 1661.00 90.00 +6 42.00 65.00 10.00 15.00 655.00 90.00 +7 16.00 42.00 20.00 257.00 897.00 90.00 +8 58.00 70.00 20.00 833.00 1473.00 90.00 +9 34.00 60.00 20.00 2647.00 3287.00 90.00 +10 28.00 70.00 10.00 2361.00 3001.00 90.00 +11 35.00 66.00 10.00 2551.00 3191.00 90.00 +12 35.00 69.00 10.00 2458.00 3098.00 90.00 +13 25.00 85.00 20.00 1879.00 2519.00 90.00 +14 22.00 75.00 30.00 2165.00 2805.00 90.00 +15 22.00 85.00 10.00 1786.00 2426.00 90.00 +16 20.00 80.00 40.00 1976.00 2616.00 90.00 +17 20.00 85.00 40.00 1694.00 2334.00 90.00 +18 18.00 75.00 20.00 2071.00 2711.00 90.00 +19 15.00 75.00 20.00 1502.00 2142.00 90.00 +20 15.00 80.00 10.00 1597.00 2237.00 90.00 +21 30.00 50.00 10.00 10.00 650.00 90.00 +22 30.00 56.00 20.00 2648.00 3288.00 90.00 +23 28.00 52.00 20.00 12.00 652.00 90.00 +24 14.00 66.00 10.00 1403.00 2043.00 90.00 +25 25.00 50.00 10.00 15.00 655.00 90.00 +26 22.00 66.00 40.00 2264.00 2904.00 90.00 +27 8.00 62.00 10.00 1305.00 1945.00 90.00 +28 23.00 52.00 10.00 17.00 657.00 90.00 +29 4.00 55.00 20.00 1207.00 1847.00 90.00 +30 20.00 50.00 10.00 158.00 798.00 90.00 +31 20.00 55.00 10.00 63.00 703.00 90.00 +32 10.00 35.00 20.00 541.00 1181.00 90.00 +33 10.00 40.00 30.00 353.00 993.00 90.00 +34 8.00 40.00 40.00 445.00 1085.00 90.00 +35 8.00 45.00 20.00 1106.00 1746.00 90.00 +36 5.00 35.00 10.00 636.00 1276.00 90.00 +37 5.00 45.00 10.00 1013.00 1653.00 90.00 +38 2.00 40.00 20.00 731.00 1371.00 90.00 +39 0.00 40.00 30.00 823.00 1463.00 90.00 +40 0.00 45.00 20.00 918.00 1558.00 90.00 +41 36.00 18.00 10.00 1579.00 2219.00 90.00 +42 35.00 32.00 10.00 2518.00 3158.00 90.00 +43 33.00 32.00 20.00 2426.00 3066.00 90.00 +44 33.00 35.00 10.00 2333.00 2973.00 90.00 +45 32.00 20.00 10.00 1673.00 2313.00 90.00 +46 30.00 30.00 10.00 1865.00 2505.00 90.00 +47 34.00 25.00 30.00 1769.00 2409.00 90.00 +48 30.00 35.00 10.00 2240.00 2880.00 90.00 +49 36.00 40.00 10.00 2616.00 3256.00 90.00 +50 48.00 20.00 10.00 727.00 1367.00 90.00 +51 26.00 32.00 10.00 2052.00 2692.00 90.00 +52 25.00 30.00 10.00 1960.00 2600.00 90.00 +53 25.00 35.00 10.00 2145.00 2785.00 90.00 +54 44.00 5.00 20.00 1016.00 1656.00 90.00 +55 42.00 10.00 40.00 920.00 1560.00 90.00 +56 42.00 15.00 10.00 825.00 1465.00 90.00 +57 40.00 5.00 30.00 1110.00 1750.00 90.00 +58 38.00 15.00 40.00 1485.00 2125.00 90.00 +59 38.00 5.00 30.00 1202.00 1842.00 90.00 +60 38.00 10.00 10.00 1390.00 2030.00 90.00 +61 35.00 5.00 20.00 1295.00 1935.00 90.00 +62 50.00 30.00 10.00 161.00 801.00 90.00 +63 50.00 35.00 20.00 18.00 658.00 90.00 +64 50.00 40.00 50.00 14.00 654.00 90.00 +65 48.00 30.00 10.00 253.00 893.00 90.00 +66 44.00 25.00 10.00 631.00 1271.00 90.00 +67 47.00 35.00 10.00 348.00 988.00 90.00 +68 47.00 40.00 10.00 12.00 652.00 90.00 +69 42.00 30.00 10.00 536.00 1176.00 90.00 +70 45.00 35.00 10.00 440.00 1080.00 90.00 +71 95.00 30.00 30.00 2081.00 2721.00 90.00 +72 95.00 35.00 20.00 1986.00 2626.00 90.00 +73 53.00 30.00 10.00 68.00 708.00 90.00 +74 92.00 30.00 10.00 2174.00 2814.00 90.00 +75 53.00 35.00 50.00 19.00 659.00 90.00 +76 45.00 65.00 20.00 15.00 655.00 90.00 +77 90.00 35.00 10.00 1891.00 2531.00 90.00 +78 72.00 45.00 10.00 2627.00 3267.00 90.00 +79 78.00 40.00 20.00 2562.00 3202.00 90.00 +80 87.00 30.00 10.00 2368.00 3008.00 90.00 +81 85.00 25.00 10.00 2273.00 2913.00 90.00 +82 85.00 35.00 30.00 2463.00 3103.00 90.00 +83 75.00 55.00 20.00 1685.00 2325.00 90.00 +84 72.00 55.00 10.00 1592.00 2232.00 90.00 +85 70.00 58.00 20.00 1401.00 2041.00 90.00 +86 86.00 46.00 30.00 1789.00 2429.00 90.00 +87 66.00 55.00 10.00 1496.00 2136.00 90.00 +88 64.00 46.00 20.00 2635.00 3275.00 90.00 +89 65.00 60.00 30.00 1306.00 1946.00 90.00 +90 56.00 64.00 10.00 1115.00 1755.00 90.00 +91 60.00 55.00 10.00 2639.00 3279.00 90.00 +92 60.00 60.00 10.00 1211.00 1851.00 90.00 +93 67.00 85.00 20.00 454.00 1094.00 90.00 +94 42.00 58.00 40.00 8.00 648.00 90.00 +95 65.00 82.00 10.00 548.00 1188.00 90.00 +96 62.00 80.00 30.00 641.00 1281.00 90.00 +97 62.00 40.00 10.00 2635.00 3275.00 90.00 +98 60.00 85.00 30.00 357.00 997.00 90.00 +99 58.00 75.00 20.00 738.00 1378.00 90.00 +100 55.00 80.00 10.00 167.00 807.00 90.00 +101 55.00 85.00 20.00 262.00 902.00 90.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/capacities.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/capacities.dat new file mode 100644 index 000000000..85b84883b --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/capacities.dat @@ -0,0 +1,9 @@ ++ Vehicle's capacities: + ---------------------- + + - R1: 200 + - C1: 200 + - RC1: 200 + - R2: 1000 + - C2: 700 + - RC2: 1000 diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r101.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r101.dat new file mode 100644 index 000000000..6e62a2693 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r101.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 161.00 171.00 10.00 +3 35.00 17.00 7.00 50.00 60.00 10.00 +4 55.00 45.00 13.00 116.00 126.00 10.00 +5 55.00 20.00 19.00 149.00 159.00 10.00 +6 15.00 30.00 26.00 34.00 44.00 10.00 +7 25.00 30.00 3.00 99.00 109.00 10.00 +8 20.00 50.00 5.00 81.00 91.00 10.00 +9 10.00 43.00 9.00 95.00 105.00 10.00 +10 55.00 60.00 16.00 97.00 107.00 10.00 +11 30.00 60.00 16.00 124.00 134.00 10.00 +12 20.00 65.00 12.00 67.00 77.00 10.00 +13 50.00 35.00 19.00 63.00 73.00 10.00 +14 30.00 25.00 23.00 159.00 169.00 10.00 +15 15.00 10.00 20.00 32.00 42.00 10.00 +16 30.00 5.00 8.00 61.00 71.00 10.00 +17 10.00 20.00 19.00 75.00 85.00 10.00 +18 5.00 30.00 2.00 157.00 167.00 10.00 +19 20.00 40.00 12.00 87.00 97.00 10.00 +20 15.00 60.00 17.00 76.00 86.00 10.00 +21 45.00 65.00 9.00 126.00 136.00 10.00 +22 45.00 20.00 11.00 62.00 72.00 10.00 +23 45.00 10.00 18.00 97.00 107.00 10.00 +24 55.00 5.00 29.00 68.00 78.00 10.00 +25 65.00 35.00 3.00 153.00 163.00 10.00 +26 65.00 20.00 6.00 172.00 182.00 10.00 +27 45.00 30.00 17.00 132.00 142.00 10.00 +28 35.00 40.00 16.00 37.00 47.00 10.00 +29 41.00 37.00 16.00 39.00 49.00 10.00 +30 64.00 42.00 9.00 63.00 73.00 10.00 +31 40.00 60.00 21.00 71.00 81.00 10.00 +32 31.00 52.00 27.00 50.00 60.00 10.00 +33 35.00 69.00 23.00 141.00 151.00 10.00 +34 53.00 52.00 11.00 37.00 47.00 10.00 +35 65.00 55.00 14.00 117.00 127.00 10.00 +36 63.00 65.00 8.00 143.00 153.00 10.00 +37 2.00 60.00 5.00 41.00 51.00 10.00 +38 20.00 20.00 8.00 134.00 144.00 10.00 +39 5.00 5.00 16.00 83.00 93.00 10.00 +40 60.00 12.00 31.00 44.00 54.00 10.00 +41 40.00 25.00 9.00 85.00 95.00 10.00 +42 42.00 7.00 5.00 97.00 107.00 10.00 +43 24.00 12.00 5.00 31.00 41.00 10.00 +44 23.00 3.00 7.00 132.00 142.00 10.00 +45 11.00 14.00 18.00 69.00 79.00 10.00 +46 6.00 38.00 16.00 32.00 42.00 10.00 +47 2.00 48.00 1.00 117.00 127.00 10.00 +48 8.00 56.00 27.00 51.00 61.00 10.00 +49 13.00 52.00 36.00 165.00 175.00 10.00 +50 6.00 68.00 30.00 108.00 118.00 10.00 +51 47.00 47.00 13.00 124.00 134.00 10.00 +52 49.00 58.00 10.00 88.00 98.00 10.00 +53 27.00 43.00 9.00 52.00 62.00 10.00 +54 37.00 31.00 14.00 95.00 105.00 10.00 +55 57.00 29.00 18.00 140.00 150.00 10.00 +56 63.00 23.00 2.00 136.00 146.00 10.00 +57 53.00 12.00 6.00 130.00 140.00 10.00 +58 32.00 12.00 7.00 101.00 111.00 10.00 +59 36.00 26.00 18.00 200.00 210.00 10.00 +60 21.00 24.00 28.00 18.00 28.00 10.00 +61 17.00 34.00 3.00 162.00 172.00 10.00 +62 12.00 24.00 13.00 76.00 86.00 10.00 +63 24.00 58.00 19.00 58.00 68.00 10.00 +64 27.00 69.00 10.00 34.00 44.00 10.00 +65 15.00 77.00 9.00 73.00 83.00 10.00 +66 62.00 77.00 20.00 51.00 61.00 10.00 +67 49.00 73.00 25.00 127.00 137.00 10.00 +68 67.00 5.00 25.00 83.00 93.00 10.00 +69 56.00 39.00 36.00 142.00 152.00 10.00 +70 37.00 47.00 6.00 50.00 60.00 10.00 +71 37.00 56.00 5.00 182.00 192.00 10.00 +72 57.00 68.00 15.00 77.00 87.00 10.00 +73 47.00 16.00 25.00 35.00 45.00 10.00 +74 44.00 17.00 9.00 78.00 88.00 10.00 +75 46.00 13.00 8.00 149.00 159.00 10.00 +76 49.00 11.00 18.00 69.00 79.00 10.00 +77 49.00 42.00 13.00 73.00 83.00 10.00 +78 53.00 43.00 14.00 179.00 189.00 10.00 +79 61.00 52.00 3.00 96.00 106.00 10.00 +80 57.00 48.00 23.00 92.00 102.00 10.00 +81 56.00 37.00 6.00 182.00 192.00 10.00 +82 55.00 54.00 26.00 94.00 104.00 10.00 +83 15.00 47.00 16.00 55.00 65.00 10.00 +84 14.00 37.00 11.00 44.00 54.00 10.00 +85 11.00 31.00 7.00 101.00 111.00 10.00 +86 16.00 22.00 41.00 91.00 101.00 10.00 +87 4.00 18.00 35.00 94.00 104.00 10.00 +88 28.00 18.00 26.00 93.00 103.00 10.00 +89 26.00 52.00 9.00 74.00 84.00 10.00 +90 26.00 35.00 15.00 176.00 186.00 10.00 +91 31.00 67.00 3.00 95.00 105.00 10.00 +92 15.00 19.00 1.00 160.00 170.00 10.00 +93 22.00 22.00 2.00 18.00 28.00 10.00 +94 18.00 24.00 22.00 188.00 198.00 10.00 +95 26.00 27.00 27.00 100.00 110.00 10.00 +96 25.00 24.00 20.00 39.00 49.00 10.00 +97 22.00 27.00 11.00 135.00 145.00 10.00 +98 25.00 21.00 12.00 133.00 143.00 10.00 +99 19.00 21.00 10.00 58.00 68.00 10.00 +100 20.00 26.00 9.00 83.00 93.00 10.00 +101 18.00 18.00 17.00 185.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r102.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r102.dat new file mode 100644 index 000000000..9eddcfc24 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r102.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 0.00 204.00 10.00 +3 35.00 17.00 7.00 0.00 202.00 10.00 +4 55.00 45.00 13.00 0.00 197.00 10.00 +5 55.00 20.00 19.00 149.00 159.00 10.00 +6 15.00 30.00 26.00 0.00 199.00 10.00 +7 25.00 30.00 3.00 99.00 109.00 10.00 +8 20.00 50.00 5.00 0.00 198.00 10.00 +9 10.00 43.00 9.00 95.00 105.00 10.00 +10 55.00 60.00 16.00 97.00 107.00 10.00 +11 30.00 60.00 16.00 124.00 134.00 10.00 +12 20.00 65.00 12.00 67.00 77.00 10.00 +13 50.00 35.00 19.00 0.00 205.00 10.00 +14 30.00 25.00 23.00 159.00 169.00 10.00 +15 15.00 10.00 20.00 32.00 42.00 10.00 +16 30.00 5.00 8.00 61.00 71.00 10.00 +17 10.00 20.00 19.00 75.00 85.00 10.00 +18 5.00 30.00 2.00 157.00 167.00 10.00 +19 20.00 40.00 12.00 87.00 97.00 10.00 +20 15.00 60.00 17.00 76.00 86.00 10.00 +21 45.00 65.00 9.00 126.00 136.00 10.00 +22 45.00 20.00 11.00 0.00 201.00 10.00 +23 45.00 10.00 18.00 97.00 107.00 10.00 +24 55.00 5.00 29.00 68.00 78.00 10.00 +25 65.00 35.00 3.00 153.00 163.00 10.00 +26 65.00 20.00 6.00 172.00 182.00 10.00 +27 45.00 30.00 17.00 0.00 208.00 10.00 +28 35.00 40.00 16.00 37.00 47.00 10.00 +29 41.00 37.00 16.00 39.00 49.00 10.00 +30 64.00 42.00 9.00 63.00 73.00 10.00 +31 40.00 60.00 21.00 71.00 81.00 10.00 +32 31.00 52.00 27.00 0.00 202.00 10.00 +33 35.00 69.00 23.00 141.00 151.00 10.00 +34 53.00 52.00 11.00 37.00 47.00 10.00 +35 65.00 55.00 14.00 0.00 183.00 10.00 +36 63.00 65.00 8.00 143.00 153.00 10.00 +37 2.00 60.00 5.00 41.00 51.00 10.00 +38 20.00 20.00 8.00 0.00 198.00 10.00 +39 5.00 5.00 16.00 83.00 93.00 10.00 +40 60.00 12.00 31.00 44.00 54.00 10.00 +41 40.00 25.00 9.00 85.00 95.00 10.00 +42 42.00 7.00 5.00 97.00 107.00 10.00 +43 24.00 12.00 5.00 31.00 41.00 10.00 +44 23.00 3.00 7.00 132.00 142.00 10.00 +45 11.00 14.00 18.00 69.00 79.00 10.00 +46 6.00 38.00 16.00 32.00 42.00 10.00 +47 2.00 48.00 1.00 117.00 127.00 10.00 +48 8.00 56.00 27.00 51.00 61.00 10.00 +49 13.00 52.00 36.00 0.00 192.00 10.00 +50 6.00 68.00 30.00 108.00 118.00 10.00 +51 47.00 47.00 13.00 0.00 203.00 10.00 +52 49.00 58.00 10.00 88.00 98.00 10.00 +53 27.00 43.00 9.00 0.00 208.00 10.00 +54 37.00 31.00 14.00 95.00 105.00 10.00 +55 57.00 29.00 18.00 140.00 150.00 10.00 +56 63.00 23.00 2.00 136.00 146.00 10.00 +57 53.00 12.00 6.00 130.00 140.00 10.00 +58 32.00 12.00 7.00 101.00 111.00 10.00 +59 36.00 26.00 18.00 200.00 210.00 10.00 +60 21.00 24.00 28.00 0.00 202.00 10.00 +61 17.00 34.00 3.00 162.00 172.00 10.00 +62 12.00 24.00 13.00 76.00 86.00 10.00 +63 24.00 58.00 19.00 58.00 68.00 10.00 +64 27.00 69.00 10.00 34.00 44.00 10.00 +65 15.00 77.00 9.00 73.00 83.00 10.00 +66 62.00 77.00 20.00 51.00 61.00 10.00 +67 49.00 73.00 25.00 127.00 137.00 10.00 +68 67.00 5.00 25.00 83.00 93.00 10.00 +69 56.00 39.00 36.00 142.00 152.00 10.00 +70 37.00 47.00 6.00 50.00 60.00 10.00 +71 37.00 56.00 5.00 182.00 192.00 10.00 +72 57.00 68.00 15.00 77.00 87.00 10.00 +73 47.00 16.00 25.00 0.00 197.00 10.00 +74 44.00 17.00 9.00 78.00 88.00 10.00 +75 46.00 13.00 8.00 149.00 159.00 10.00 +76 49.00 11.00 18.00 0.00 192.00 10.00 +77 49.00 42.00 13.00 73.00 83.00 10.00 +78 53.00 43.00 14.00 179.00 189.00 10.00 +79 61.00 52.00 3.00 96.00 106.00 10.00 +80 57.00 48.00 23.00 92.00 102.00 10.00 +81 56.00 37.00 6.00 182.00 192.00 10.00 +82 55.00 54.00 26.00 94.00 104.00 10.00 +83 15.00 47.00 16.00 0.00 196.00 10.00 +84 14.00 37.00 11.00 0.00 198.00 10.00 +85 11.00 31.00 7.00 101.00 111.00 10.00 +86 16.00 22.00 41.00 0.00 196.00 10.00 +87 4.00 18.00 35.00 94.00 104.00 10.00 +88 28.00 18.00 26.00 93.00 103.00 10.00 +89 26.00 52.00 9.00 74.00 84.00 10.00 +90 26.00 35.00 15.00 176.00 186.00 10.00 +91 31.00 67.00 3.00 95.00 105.00 10.00 +92 15.00 19.00 1.00 0.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 28.00 10.00 +94 18.00 24.00 22.00 188.00 198.00 10.00 +95 26.00 27.00 27.00 0.00 207.00 10.00 +96 25.00 24.00 20.00 0.00 205.00 10.00 +97 22.00 27.00 11.00 0.00 204.00 10.00 +98 25.00 21.00 12.00 133.00 143.00 10.00 +99 19.00 21.00 10.00 0.00 198.00 10.00 +100 20.00 26.00 9.00 83.00 93.00 10.00 +101 18.00 18.00 17.00 185.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r103.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r103.dat new file mode 100644 index 000000000..35daacf24 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r103.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 0.00 204.00 10.00 +3 35.00 17.00 7.00 0.00 202.00 10.00 +4 55.00 45.00 13.00 0.00 197.00 10.00 +5 55.00 20.00 19.00 149.00 159.00 10.00 +6 15.00 30.00 26.00 0.00 199.00 10.00 +7 25.00 30.00 3.00 99.00 109.00 10.00 +8 20.00 50.00 5.00 0.00 198.00 10.00 +9 10.00 43.00 9.00 95.00 105.00 10.00 +10 55.00 60.00 16.00 97.00 107.00 10.00 +11 30.00 60.00 16.00 124.00 134.00 10.00 +12 20.00 65.00 12.00 67.00 77.00 10.00 +13 50.00 35.00 19.00 0.00 205.00 10.00 +14 30.00 25.00 23.00 159.00 169.00 10.00 +15 15.00 10.00 20.00 0.00 187.00 10.00 +16 30.00 5.00 8.00 61.00 71.00 10.00 +17 10.00 20.00 19.00 0.00 190.00 10.00 +18 5.00 30.00 2.00 157.00 167.00 10.00 +19 20.00 40.00 12.00 0.00 204.00 10.00 +20 15.00 60.00 17.00 0.00 187.00 10.00 +21 45.00 65.00 9.00 0.00 188.00 10.00 +22 45.00 20.00 11.00 0.00 201.00 10.00 +23 45.00 10.00 18.00 97.00 107.00 10.00 +24 55.00 5.00 29.00 68.00 78.00 10.00 +25 65.00 35.00 3.00 0.00 190.00 10.00 +26 65.00 20.00 6.00 172.00 182.00 10.00 +27 45.00 30.00 17.00 0.00 208.00 10.00 +28 35.00 40.00 16.00 37.00 47.00 10.00 +29 41.00 37.00 16.00 0.00 213.00 10.00 +30 64.00 42.00 9.00 0.00 190.00 10.00 +31 40.00 60.00 21.00 71.00 81.00 10.00 +32 31.00 52.00 27.00 0.00 202.00 10.00 +33 35.00 69.00 23.00 0.00 186.00 10.00 +34 53.00 52.00 11.00 37.00 47.00 10.00 +35 65.00 55.00 14.00 0.00 183.00 10.00 +36 63.00 65.00 8.00 143.00 153.00 10.00 +37 2.00 60.00 5.00 41.00 51.00 10.00 +38 20.00 20.00 8.00 0.00 198.00 10.00 +39 5.00 5.00 16.00 83.00 93.00 10.00 +40 60.00 12.00 31.00 44.00 54.00 10.00 +41 40.00 25.00 9.00 85.00 95.00 10.00 +42 42.00 7.00 5.00 97.00 107.00 10.00 +43 24.00 12.00 5.00 31.00 41.00 10.00 +44 23.00 3.00 7.00 0.00 185.00 10.00 +45 11.00 14.00 18.00 69.00 79.00 10.00 +46 6.00 38.00 16.00 32.00 42.00 10.00 +47 2.00 48.00 1.00 0.00 184.00 10.00 +48 8.00 56.00 27.00 0.00 185.00 10.00 +49 13.00 52.00 36.00 0.00 192.00 10.00 +50 6.00 68.00 30.00 108.00 118.00 10.00 +51 47.00 47.00 13.00 0.00 203.00 10.00 +52 49.00 58.00 10.00 0.00 193.00 10.00 +53 27.00 43.00 9.00 0.00 208.00 10.00 +54 37.00 31.00 14.00 95.00 105.00 10.00 +55 57.00 29.00 18.00 0.00 197.00 10.00 +56 63.00 23.00 2.00 136.00 146.00 10.00 +57 53.00 12.00 6.00 130.00 140.00 10.00 +58 32.00 12.00 7.00 0.00 196.00 10.00 +59 36.00 26.00 18.00 200.00 210.00 10.00 +60 21.00 24.00 28.00 0.00 202.00 10.00 +61 17.00 34.00 3.00 0.00 201.00 10.00 +62 12.00 24.00 13.00 0.00 194.00 10.00 +63 24.00 58.00 19.00 58.00 68.00 10.00 +64 27.00 69.00 10.00 0.00 185.00 10.00 +65 15.00 77.00 9.00 73.00 83.00 10.00 +66 62.00 77.00 20.00 51.00 61.00 10.00 +67 49.00 73.00 25.00 127.00 137.00 10.00 +68 67.00 5.00 25.00 83.00 93.00 10.00 +69 56.00 39.00 36.00 142.00 152.00 10.00 +70 37.00 47.00 6.00 50.00 60.00 10.00 +71 37.00 56.00 5.00 182.00 192.00 10.00 +72 57.00 68.00 15.00 0.00 180.00 10.00 +73 47.00 16.00 25.00 0.00 197.00 10.00 +74 44.00 17.00 9.00 0.00 199.00 10.00 +75 46.00 13.00 8.00 149.00 159.00 10.00 +76 49.00 11.00 18.00 0.00 192.00 10.00 +77 49.00 42.00 13.00 73.00 83.00 10.00 +78 53.00 43.00 14.00 179.00 189.00 10.00 +79 61.00 52.00 3.00 96.00 106.00 10.00 +80 57.00 48.00 23.00 92.00 102.00 10.00 +81 56.00 37.00 6.00 182.00 192.00 10.00 +82 55.00 54.00 26.00 0.00 192.00 10.00 +83 15.00 47.00 16.00 0.00 196.00 10.00 +84 14.00 37.00 11.00 0.00 198.00 10.00 +85 11.00 31.00 7.00 101.00 111.00 10.00 +86 16.00 22.00 41.00 0.00 196.00 10.00 +87 4.00 18.00 35.00 0.00 184.00 10.00 +88 28.00 18.00 26.00 93.00 103.00 10.00 +89 26.00 52.00 9.00 74.00 84.00 10.00 +90 26.00 35.00 15.00 0.00 211.00 10.00 +91 31.00 67.00 3.00 0.00 187.00 10.00 +92 15.00 19.00 1.00 0.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 28.00 10.00 +94 18.00 24.00 22.00 188.00 198.00 10.00 +95 26.00 27.00 27.00 0.00 207.00 10.00 +96 25.00 24.00 20.00 0.00 205.00 10.00 +97 22.00 27.00 11.00 0.00 204.00 10.00 +98 25.00 21.00 12.00 0.00 202.00 10.00 +99 19.00 21.00 10.00 0.00 198.00 10.00 +100 20.00 26.00 9.00 83.00 93.00 10.00 +101 18.00 18.00 17.00 185.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r104.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r104.dat new file mode 100644 index 000000000..31a7ceddf --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r104.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 0.00 204.00 10.00 +3 35.00 17.00 7.00 0.00 202.00 10.00 +4 55.00 45.00 13.00 0.00 197.00 10.00 +5 55.00 20.00 19.00 149.00 159.00 10.00 +6 15.00 30.00 26.00 0.00 199.00 10.00 +7 25.00 30.00 3.00 0.00 208.00 10.00 +8 20.00 50.00 5.00 0.00 198.00 10.00 +9 10.00 43.00 9.00 95.00 105.00 10.00 +10 55.00 60.00 16.00 97.00 107.00 10.00 +11 30.00 60.00 16.00 0.00 194.00 10.00 +12 20.00 65.00 12.00 67.00 77.00 10.00 +13 50.00 35.00 19.00 0.00 205.00 10.00 +14 30.00 25.00 23.00 159.00 169.00 10.00 +15 15.00 10.00 20.00 0.00 187.00 10.00 +16 30.00 5.00 8.00 61.00 71.00 10.00 +17 10.00 20.00 19.00 0.00 190.00 10.00 +18 5.00 30.00 2.00 0.00 189.00 10.00 +19 20.00 40.00 12.00 0.00 204.00 10.00 +20 15.00 60.00 17.00 0.00 187.00 10.00 +21 45.00 65.00 9.00 0.00 188.00 10.00 +22 45.00 20.00 11.00 0.00 201.00 10.00 +23 45.00 10.00 18.00 0.00 193.00 10.00 +24 55.00 5.00 29.00 68.00 78.00 10.00 +25 65.00 35.00 3.00 0.00 190.00 10.00 +26 65.00 20.00 6.00 172.00 182.00 10.00 +27 45.00 30.00 17.00 0.00 208.00 10.00 +28 35.00 40.00 16.00 0.00 215.00 10.00 +29 41.00 37.00 16.00 0.00 213.00 10.00 +30 64.00 42.00 9.00 0.00 190.00 10.00 +31 40.00 60.00 21.00 0.00 194.00 10.00 +32 31.00 52.00 27.00 0.00 202.00 10.00 +33 35.00 69.00 23.00 0.00 186.00 10.00 +34 53.00 52.00 11.00 0.00 195.00 10.00 +35 65.00 55.00 14.00 0.00 183.00 10.00 +36 63.00 65.00 8.00 0.00 178.00 10.00 +37 2.00 60.00 5.00 0.00 178.00 10.00 +38 20.00 20.00 8.00 0.00 198.00 10.00 +39 5.00 5.00 16.00 83.00 93.00 10.00 +40 60.00 12.00 31.00 0.00 186.00 10.00 +41 40.00 25.00 9.00 0.00 208.00 10.00 +42 42.00 7.00 5.00 0.00 191.00 10.00 +43 24.00 12.00 5.00 0.00 194.00 10.00 +44 23.00 3.00 7.00 0.00 185.00 10.00 +45 11.00 14.00 18.00 69.00 79.00 10.00 +46 6.00 38.00 16.00 0.00 190.00 10.00 +47 2.00 48.00 1.00 0.00 184.00 10.00 +48 8.00 56.00 27.00 0.00 185.00 10.00 +49 13.00 52.00 36.00 0.00 192.00 10.00 +50 6.00 68.00 30.00 0.00 176.00 10.00 +51 47.00 47.00 13.00 0.00 203.00 10.00 +52 49.00 58.00 10.00 0.00 193.00 10.00 +53 27.00 43.00 9.00 0.00 208.00 10.00 +54 37.00 31.00 14.00 95.00 105.00 10.00 +55 57.00 29.00 18.00 0.00 197.00 10.00 +56 63.00 23.00 2.00 136.00 146.00 10.00 +57 53.00 12.00 6.00 0.00 190.00 10.00 +58 32.00 12.00 7.00 0.00 196.00 10.00 +59 36.00 26.00 18.00 200.00 210.00 10.00 +60 21.00 24.00 28.00 0.00 202.00 10.00 +61 17.00 34.00 3.00 0.00 201.00 10.00 +62 12.00 24.00 13.00 0.00 194.00 10.00 +63 24.00 58.00 19.00 58.00 68.00 10.00 +64 27.00 69.00 10.00 0.00 185.00 10.00 +65 15.00 77.00 9.00 0.00 173.00 10.00 +66 62.00 77.00 20.00 0.00 170.00 10.00 +67 49.00 73.00 25.00 0.00 179.00 10.00 +68 67.00 5.00 25.00 83.00 93.00 10.00 +69 56.00 39.00 36.00 0.00 198.00 10.00 +70 37.00 47.00 6.00 50.00 60.00 10.00 +71 37.00 56.00 5.00 0.00 198.00 10.00 +72 57.00 68.00 15.00 0.00 180.00 10.00 +73 47.00 16.00 25.00 0.00 197.00 10.00 +74 44.00 17.00 9.00 0.00 199.00 10.00 +75 46.00 13.00 8.00 149.00 159.00 10.00 +76 49.00 11.00 18.00 0.00 192.00 10.00 +77 49.00 42.00 13.00 73.00 83.00 10.00 +78 53.00 43.00 14.00 179.00 189.00 10.00 +79 61.00 52.00 3.00 0.00 188.00 10.00 +80 57.00 48.00 23.00 92.00 102.00 10.00 +81 56.00 37.00 6.00 0.00 198.00 10.00 +82 55.00 54.00 26.00 0.00 192.00 10.00 +83 15.00 47.00 16.00 0.00 196.00 10.00 +84 14.00 37.00 11.00 0.00 198.00 10.00 +85 11.00 31.00 7.00 101.00 111.00 10.00 +86 16.00 22.00 41.00 0.00 196.00 10.00 +87 4.00 18.00 35.00 0.00 184.00 10.00 +88 28.00 18.00 26.00 93.00 103.00 10.00 +89 26.00 52.00 9.00 0.00 200.00 10.00 +90 26.00 35.00 15.00 0.00 211.00 10.00 +91 31.00 67.00 3.00 0.00 187.00 10.00 +92 15.00 19.00 1.00 0.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 28.00 10.00 +94 18.00 24.00 22.00 0.00 199.00 10.00 +95 26.00 27.00 27.00 0.00 207.00 10.00 +96 25.00 24.00 20.00 0.00 205.00 10.00 +97 22.00 27.00 11.00 0.00 204.00 10.00 +98 25.00 21.00 12.00 0.00 202.00 10.00 +99 19.00 21.00 10.00 0.00 198.00 10.00 +100 20.00 26.00 9.00 83.00 93.00 10.00 +101 18.00 18.00 17.00 185.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r105.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r105.dat new file mode 100644 index 000000000..92c2b21df --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r105.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 151.00 181.00 10.00 +3 35.00 17.00 7.00 40.00 70.00 10.00 +4 55.00 45.00 13.00 106.00 136.00 10.00 +5 55.00 20.00 19.00 139.00 169.00 10.00 +6 15.00 30.00 26.00 24.00 54.00 10.00 +7 25.00 30.00 3.00 89.00 119.00 10.00 +8 20.00 50.00 5.00 71.00 101.00 10.00 +9 10.00 43.00 9.00 85.00 115.00 10.00 +10 55.00 60.00 16.00 87.00 117.00 10.00 +11 30.00 60.00 16.00 114.00 144.00 10.00 +12 20.00 65.00 12.00 57.00 87.00 10.00 +13 50.00 35.00 19.00 53.00 83.00 10.00 +14 30.00 25.00 23.00 149.00 179.00 10.00 +15 15.00 10.00 20.00 32.00 62.00 10.00 +16 30.00 5.00 8.00 51.00 81.00 10.00 +17 10.00 20.00 19.00 65.00 95.00 10.00 +18 5.00 30.00 2.00 147.00 177.00 10.00 +19 20.00 40.00 12.00 77.00 107.00 10.00 +20 15.00 60.00 17.00 66.00 96.00 10.00 +21 45.00 65.00 9.00 116.00 146.00 10.00 +22 45.00 20.00 11.00 52.00 82.00 10.00 +23 45.00 10.00 18.00 87.00 117.00 10.00 +24 55.00 5.00 29.00 58.00 88.00 10.00 +25 65.00 35.00 3.00 143.00 173.00 10.00 +26 65.00 20.00 6.00 156.00 186.00 10.00 +27 45.00 30.00 17.00 122.00 152.00 10.00 +28 35.00 40.00 16.00 27.00 57.00 10.00 +29 41.00 37.00 16.00 29.00 59.00 10.00 +30 64.00 42.00 9.00 53.00 83.00 10.00 +31 40.00 60.00 21.00 61.00 91.00 10.00 +32 31.00 52.00 27.00 40.00 70.00 10.00 +33 35.00 69.00 23.00 131.00 161.00 10.00 +34 53.00 52.00 11.00 27.00 57.00 10.00 +35 65.00 55.00 14.00 107.00 137.00 10.00 +36 63.00 65.00 8.00 133.00 163.00 10.00 +37 2.00 60.00 5.00 41.00 71.00 10.00 +38 20.00 20.00 8.00 124.00 154.00 10.00 +39 5.00 5.00 16.00 73.00 103.00 10.00 +40 60.00 12.00 31.00 34.00 64.00 10.00 +41 40.00 25.00 9.00 75.00 105.00 10.00 +42 42.00 7.00 5.00 87.00 117.00 10.00 +43 24.00 12.00 5.00 25.00 55.00 10.00 +44 23.00 3.00 7.00 122.00 152.00 10.00 +45 11.00 14.00 18.00 59.00 89.00 10.00 +46 6.00 38.00 16.00 29.00 59.00 10.00 +47 2.00 48.00 1.00 107.00 137.00 10.00 +48 8.00 56.00 27.00 41.00 71.00 10.00 +49 13.00 52.00 36.00 155.00 185.00 10.00 +50 6.00 68.00 30.00 98.00 128.00 10.00 +51 47.00 47.00 13.00 114.00 144.00 10.00 +52 49.00 58.00 10.00 78.00 108.00 10.00 +53 27.00 43.00 9.00 42.00 72.00 10.00 +54 37.00 31.00 14.00 85.00 115.00 10.00 +55 57.00 29.00 18.00 130.00 160.00 10.00 +56 63.00 23.00 2.00 126.00 156.00 10.00 +57 53.00 12.00 6.00 120.00 150.00 10.00 +58 32.00 12.00 7.00 91.00 121.00 10.00 +59 36.00 26.00 18.00 180.00 210.00 10.00 +60 21.00 24.00 28.00 17.00 47.00 10.00 +61 17.00 34.00 3.00 152.00 182.00 10.00 +62 12.00 24.00 13.00 66.00 96.00 10.00 +63 24.00 58.00 19.00 48.00 78.00 10.00 +64 27.00 69.00 10.00 34.00 64.00 10.00 +65 15.00 77.00 9.00 63.00 93.00 10.00 +66 62.00 77.00 20.00 49.00 79.00 10.00 +67 49.00 73.00 25.00 117.00 147.00 10.00 +68 67.00 5.00 25.00 73.00 103.00 10.00 +69 56.00 39.00 36.00 132.00 162.00 10.00 +70 37.00 47.00 6.00 40.00 70.00 10.00 +71 37.00 56.00 5.00 168.00 198.00 10.00 +72 57.00 68.00 15.00 67.00 97.00 10.00 +73 47.00 16.00 25.00 25.00 55.00 10.00 +74 44.00 17.00 9.00 68.00 98.00 10.00 +75 46.00 13.00 8.00 139.00 169.00 10.00 +76 49.00 11.00 18.00 59.00 89.00 10.00 +77 49.00 42.00 13.00 63.00 93.00 10.00 +78 53.00 43.00 14.00 169.00 199.00 10.00 +79 61.00 52.00 3.00 86.00 116.00 10.00 +80 57.00 48.00 23.00 82.00 112.00 10.00 +81 56.00 37.00 6.00 168.00 198.00 10.00 +82 55.00 54.00 26.00 84.00 114.00 10.00 +83 15.00 47.00 16.00 45.00 75.00 10.00 +84 14.00 37.00 11.00 34.00 64.00 10.00 +85 11.00 31.00 7.00 91.00 121.00 10.00 +86 16.00 22.00 41.00 81.00 111.00 10.00 +87 4.00 18.00 35.00 84.00 114.00 10.00 +88 28.00 18.00 26.00 83.00 113.00 10.00 +89 26.00 52.00 9.00 64.00 94.00 10.00 +90 26.00 35.00 15.00 166.00 196.00 10.00 +91 31.00 67.00 3.00 85.00 115.00 10.00 +92 15.00 19.00 1.00 150.00 180.00 10.00 +93 22.00 22.00 2.00 18.00 48.00 10.00 +94 18.00 24.00 22.00 169.00 199.00 10.00 +95 26.00 27.00 27.00 90.00 120.00 10.00 +96 25.00 24.00 20.00 29.00 59.00 10.00 +97 22.00 27.00 11.00 125.00 155.00 10.00 +98 25.00 21.00 12.00 123.00 153.00 10.00 +99 19.00 21.00 10.00 48.00 78.00 10.00 +100 20.00 26.00 9.00 73.00 103.00 10.00 +101 18.00 18.00 17.00 165.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r106.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r106.dat new file mode 100644 index 000000000..ffc1a7d04 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r106.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 0.00 204.00 10.00 +3 35.00 17.00 7.00 0.00 202.00 10.00 +4 55.00 45.00 13.00 0.00 197.00 10.00 +5 55.00 20.00 19.00 139.00 169.00 10.00 +6 15.00 30.00 26.00 0.00 199.00 10.00 +7 25.00 30.00 3.00 89.00 119.00 10.00 +8 20.00 50.00 5.00 0.00 198.00 10.00 +9 10.00 43.00 9.00 85.00 115.00 10.00 +10 55.00 60.00 16.00 87.00 117.00 10.00 +11 30.00 60.00 16.00 114.00 144.00 10.00 +12 20.00 65.00 12.00 57.00 87.00 10.00 +13 50.00 35.00 19.00 0.00 205.00 10.00 +14 30.00 25.00 23.00 149.00 179.00 10.00 +15 15.00 10.00 20.00 32.00 62.00 10.00 +16 30.00 5.00 8.00 51.00 81.00 10.00 +17 10.00 20.00 19.00 65.00 95.00 10.00 +18 5.00 30.00 2.00 147.00 177.00 10.00 +19 20.00 40.00 12.00 77.00 107.00 10.00 +20 15.00 60.00 17.00 66.00 96.00 10.00 +21 45.00 65.00 9.00 116.00 146.00 10.00 +22 45.00 20.00 11.00 0.00 201.00 10.00 +23 45.00 10.00 18.00 87.00 117.00 10.00 +24 55.00 5.00 29.00 58.00 88.00 10.00 +25 65.00 35.00 3.00 143.00 173.00 10.00 +26 65.00 20.00 6.00 156.00 186.00 10.00 +27 45.00 30.00 17.00 0.00 208.00 10.00 +28 35.00 40.00 16.00 27.00 57.00 10.00 +29 41.00 37.00 16.00 29.00 59.00 10.00 +30 64.00 42.00 9.00 53.00 83.00 10.00 +31 40.00 60.00 21.00 61.00 91.00 10.00 +32 31.00 52.00 27.00 0.00 202.00 10.00 +33 35.00 69.00 23.00 131.00 161.00 10.00 +34 53.00 52.00 11.00 27.00 57.00 10.00 +35 65.00 55.00 14.00 0.00 183.00 10.00 +36 63.00 65.00 8.00 133.00 163.00 10.00 +37 2.00 60.00 5.00 41.00 71.00 10.00 +38 20.00 20.00 8.00 0.00 198.00 10.00 +39 5.00 5.00 16.00 73.00 103.00 10.00 +40 60.00 12.00 31.00 34.00 64.00 10.00 +41 40.00 25.00 9.00 75.00 105.00 10.00 +42 42.00 7.00 5.00 87.00 117.00 10.00 +43 24.00 12.00 5.00 25.00 55.00 10.00 +44 23.00 3.00 7.00 122.00 152.00 10.00 +45 11.00 14.00 18.00 59.00 89.00 10.00 +46 6.00 38.00 16.00 29.00 59.00 10.00 +47 2.00 48.00 1.00 107.00 137.00 10.00 +48 8.00 56.00 27.00 41.00 71.00 10.00 +49 13.00 52.00 36.00 0.00 192.00 10.00 +50 6.00 68.00 30.00 98.00 128.00 10.00 +51 47.00 47.00 13.00 0.00 203.00 10.00 +52 49.00 58.00 10.00 78.00 108.00 10.00 +53 27.00 43.00 9.00 0.00 208.00 10.00 +54 37.00 31.00 14.00 85.00 115.00 10.00 +55 57.00 29.00 18.00 130.00 160.00 10.00 +56 63.00 23.00 2.00 126.00 156.00 10.00 +57 53.00 12.00 6.00 120.00 150.00 10.00 +58 32.00 12.00 7.00 91.00 121.00 10.00 +59 36.00 26.00 18.00 180.00 210.00 10.00 +60 21.00 24.00 28.00 0.00 202.00 10.00 +61 17.00 34.00 3.00 152.00 182.00 10.00 +62 12.00 24.00 13.00 66.00 96.00 10.00 +63 24.00 58.00 19.00 48.00 78.00 10.00 +64 27.00 69.00 10.00 34.00 64.00 10.00 +65 15.00 77.00 9.00 63.00 93.00 10.00 +66 62.00 77.00 20.00 49.00 79.00 10.00 +67 49.00 73.00 25.00 117.00 147.00 10.00 +68 67.00 5.00 25.00 73.00 103.00 10.00 +69 56.00 39.00 36.00 132.00 162.00 10.00 +70 37.00 47.00 6.00 40.00 70.00 10.00 +71 37.00 56.00 5.00 168.00 198.00 10.00 +72 57.00 68.00 15.00 67.00 97.00 10.00 +73 47.00 16.00 25.00 0.00 197.00 10.00 +74 44.00 17.00 9.00 68.00 98.00 10.00 +75 46.00 13.00 8.00 139.00 169.00 10.00 +76 49.00 11.00 18.00 0.00 192.00 10.00 +77 49.00 42.00 13.00 63.00 93.00 10.00 +78 53.00 43.00 14.00 169.00 199.00 10.00 +79 61.00 52.00 3.00 86.00 116.00 10.00 +80 57.00 48.00 23.00 82.00 112.00 10.00 +81 56.00 37.00 6.00 168.00 198.00 10.00 +82 55.00 54.00 26.00 84.00 114.00 10.00 +83 15.00 47.00 16.00 0.00 196.00 10.00 +84 14.00 37.00 11.00 0.00 198.00 10.00 +85 11.00 31.00 7.00 91.00 121.00 10.00 +86 16.00 22.00 41.00 0.00 196.00 10.00 +87 4.00 18.00 35.00 84.00 114.00 10.00 +88 28.00 18.00 26.00 83.00 113.00 10.00 +89 26.00 52.00 9.00 64.00 94.00 10.00 +90 26.00 35.00 15.00 166.00 196.00 10.00 +91 31.00 67.00 3.00 85.00 115.00 10.00 +92 15.00 19.00 1.00 0.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 48.00 10.00 +94 18.00 24.00 22.00 169.00 199.00 10.00 +95 26.00 27.00 27.00 0.00 207.00 10.00 +96 25.00 24.00 20.00 0.00 205.00 10.00 +97 22.00 27.00 11.00 0.00 204.00 10.00 +98 25.00 21.00 12.00 123.00 153.00 10.00 +99 19.00 21.00 10.00 0.00 198.00 10.00 +100 20.00 26.00 9.00 73.00 103.00 10.00 +101 18.00 18.00 17.00 165.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r107.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r107.dat new file mode 100644 index 000000000..9ef9ca182 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r107.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 0.00 204.00 10.00 +3 35.00 17.00 7.00 0.00 202.00 10.00 +4 55.00 45.00 13.00 0.00 197.00 10.00 +5 55.00 20.00 19.00 139.00 169.00 10.00 +6 15.00 30.00 26.00 0.00 199.00 10.00 +7 25.00 30.00 3.00 89.00 119.00 10.00 +8 20.00 50.00 5.00 0.00 198.00 10.00 +9 10.00 43.00 9.00 85.00 115.00 10.00 +10 55.00 60.00 16.00 87.00 117.00 10.00 +11 30.00 60.00 16.00 114.00 144.00 10.00 +12 20.00 65.00 12.00 57.00 87.00 10.00 +13 50.00 35.00 19.00 0.00 205.00 10.00 +14 30.00 25.00 23.00 149.00 179.00 10.00 +15 15.00 10.00 20.00 0.00 187.00 10.00 +16 30.00 5.00 8.00 51.00 81.00 10.00 +17 10.00 20.00 19.00 0.00 190.00 10.00 +18 5.00 30.00 2.00 147.00 177.00 10.00 +19 20.00 40.00 12.00 0.00 204.00 10.00 +20 15.00 60.00 17.00 0.00 187.00 10.00 +21 45.00 65.00 9.00 0.00 188.00 10.00 +22 45.00 20.00 11.00 0.00 201.00 10.00 +23 45.00 10.00 18.00 87.00 117.00 10.00 +24 55.00 5.00 29.00 58.00 88.00 10.00 +25 65.00 35.00 3.00 0.00 190.00 10.00 +26 65.00 20.00 6.00 156.00 186.00 10.00 +27 45.00 30.00 17.00 0.00 208.00 10.00 +28 35.00 40.00 16.00 27.00 57.00 10.00 +29 41.00 37.00 16.00 0.00 213.00 10.00 +30 64.00 42.00 9.00 0.00 190.00 10.00 +31 40.00 60.00 21.00 61.00 91.00 10.00 +32 31.00 52.00 27.00 0.00 202.00 10.00 +33 35.00 69.00 23.00 0.00 186.00 10.00 +34 53.00 52.00 11.00 27.00 57.00 10.00 +35 65.00 55.00 14.00 0.00 183.00 10.00 +36 63.00 65.00 8.00 133.00 163.00 10.00 +37 2.00 60.00 5.00 41.00 71.00 10.00 +38 20.00 20.00 8.00 0.00 198.00 10.00 +39 5.00 5.00 16.00 73.00 103.00 10.00 +40 60.00 12.00 31.00 34.00 64.00 10.00 +41 40.00 25.00 9.00 75.00 105.00 10.00 +42 42.00 7.00 5.00 87.00 117.00 10.00 +43 24.00 12.00 5.00 25.00 55.00 10.00 +44 23.00 3.00 7.00 0.00 185.00 10.00 +45 11.00 14.00 18.00 59.00 89.00 10.00 +46 6.00 38.00 16.00 29.00 59.00 10.00 +47 2.00 48.00 1.00 0.00 184.00 10.00 +48 8.00 56.00 27.00 0.00 185.00 10.00 +49 13.00 52.00 36.00 0.00 192.00 10.00 +50 6.00 68.00 30.00 98.00 128.00 10.00 +51 47.00 47.00 13.00 0.00 203.00 10.00 +52 49.00 58.00 10.00 0.00 193.00 10.00 +53 27.00 43.00 9.00 0.00 208.00 10.00 +54 37.00 31.00 14.00 85.00 115.00 10.00 +55 57.00 29.00 18.00 0.00 197.00 10.00 +56 63.00 23.00 2.00 126.00 156.00 10.00 +57 53.00 12.00 6.00 120.00 150.00 10.00 +58 32.00 12.00 7.00 0.00 196.00 10.00 +59 36.00 26.00 18.00 180.00 210.00 10.00 +60 21.00 24.00 28.00 0.00 202.00 10.00 +61 17.00 34.00 3.00 0.00 201.00 10.00 +62 12.00 24.00 13.00 0.00 194.00 10.00 +63 24.00 58.00 19.00 48.00 78.00 10.00 +64 27.00 69.00 10.00 0.00 185.00 10.00 +65 15.00 77.00 9.00 63.00 93.00 10.00 +66 62.00 77.00 20.00 49.00 79.00 10.00 +67 49.00 73.00 25.00 117.00 147.00 10.00 +68 67.00 5.00 25.00 73.00 103.00 10.00 +69 56.00 39.00 36.00 132.00 162.00 10.00 +70 37.00 47.00 6.00 40.00 70.00 10.00 +71 37.00 56.00 5.00 168.00 198.00 10.00 +72 57.00 68.00 15.00 0.00 180.00 10.00 +73 47.00 16.00 25.00 0.00 197.00 10.00 +74 44.00 17.00 9.00 0.00 199.00 10.00 +75 46.00 13.00 8.00 139.00 169.00 10.00 +76 49.00 11.00 18.00 0.00 192.00 10.00 +77 49.00 42.00 13.00 63.00 93.00 10.00 +78 53.00 43.00 14.00 169.00 199.00 10.00 +79 61.00 52.00 3.00 86.00 116.00 10.00 +80 57.00 48.00 23.00 82.00 112.00 10.00 +81 56.00 37.00 6.00 168.00 198.00 10.00 +82 55.00 54.00 26.00 0.00 192.00 10.00 +83 15.00 47.00 16.00 0.00 196.00 10.00 +84 14.00 37.00 11.00 0.00 198.00 10.00 +85 11.00 31.00 7.00 91.00 121.00 10.00 +86 16.00 22.00 41.00 0.00 196.00 10.00 +87 4.00 18.00 35.00 0.00 184.00 10.00 +88 28.00 18.00 26.00 83.00 113.00 10.00 +89 26.00 52.00 9.00 64.00 94.00 10.00 +90 26.00 35.00 15.00 0.00 211.00 10.00 +91 31.00 67.00 3.00 0.00 187.00 10.00 +92 15.00 19.00 1.00 0.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 48.00 10.00 +94 18.00 24.00 22.00 169.00 199.00 10.00 +95 26.00 27.00 27.00 0.00 207.00 10.00 +96 25.00 24.00 20.00 0.00 205.00 10.00 +97 22.00 27.00 11.00 0.00 204.00 10.00 +98 25.00 21.00 12.00 0.00 202.00 10.00 +99 19.00 21.00 10.00 0.00 198.00 10.00 +100 20.00 26.00 9.00 73.00 103.00 10.00 +101 18.00 18.00 17.00 165.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r108.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r108.dat new file mode 100644 index 000000000..1372c3698 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r108.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 0.00 204.00 10.00 +3 35.00 17.00 7.00 0.00 202.00 10.00 +4 55.00 45.00 13.00 0.00 197.00 10.00 +5 55.00 20.00 19.00 139.00 169.00 10.00 +6 15.00 30.00 26.00 0.00 199.00 10.00 +7 25.00 30.00 3.00 0.00 208.00 10.00 +8 20.00 50.00 5.00 0.00 198.00 10.00 +9 10.00 43.00 9.00 85.00 115.00 10.00 +10 55.00 60.00 16.00 87.00 117.00 10.00 +11 30.00 60.00 16.00 0.00 194.00 10.00 +12 20.00 65.00 12.00 57.00 87.00 10.00 +13 50.00 35.00 19.00 0.00 205.00 10.00 +14 30.00 25.00 23.00 149.00 179.00 10.00 +15 15.00 10.00 20.00 0.00 187.00 10.00 +16 30.00 5.00 8.00 51.00 81.00 10.00 +17 10.00 20.00 19.00 0.00 190.00 10.00 +18 5.00 30.00 2.00 0.00 189.00 10.00 +19 20.00 40.00 12.00 0.00 204.00 10.00 +20 15.00 60.00 17.00 0.00 187.00 10.00 +21 45.00 65.00 9.00 0.00 188.00 10.00 +22 45.00 20.00 11.00 0.00 201.00 10.00 +23 45.00 10.00 18.00 0.00 193.00 10.00 +24 55.00 5.00 29.00 58.00 88.00 10.00 +25 65.00 35.00 3.00 0.00 190.00 10.00 +26 65.00 20.00 6.00 156.00 186.00 10.00 +27 45.00 30.00 17.00 0.00 208.00 10.00 +28 35.00 40.00 16.00 0.00 215.00 10.00 +29 41.00 37.00 16.00 0.00 213.00 10.00 +30 64.00 42.00 9.00 0.00 190.00 10.00 +31 40.00 60.00 21.00 0.00 194.00 10.00 +32 31.00 52.00 27.00 0.00 202.00 10.00 +33 35.00 69.00 23.00 0.00 186.00 10.00 +34 53.00 52.00 11.00 0.00 195.00 10.00 +35 65.00 55.00 14.00 0.00 183.00 10.00 +36 63.00 65.00 8.00 0.00 178.00 10.00 +37 2.00 60.00 5.00 0.00 178.00 10.00 +38 20.00 20.00 8.00 0.00 198.00 10.00 +39 5.00 5.00 16.00 73.00 103.00 10.00 +40 60.00 12.00 31.00 0.00 186.00 10.00 +41 40.00 25.00 9.00 0.00 208.00 10.00 +42 42.00 7.00 5.00 0.00 191.00 10.00 +43 24.00 12.00 5.00 0.00 194.00 10.00 +44 23.00 3.00 7.00 0.00 185.00 10.00 +45 11.00 14.00 18.00 59.00 89.00 10.00 +46 6.00 38.00 16.00 0.00 190.00 10.00 +47 2.00 48.00 1.00 0.00 184.00 10.00 +48 8.00 56.00 27.00 0.00 185.00 10.00 +49 13.00 52.00 36.00 0.00 192.00 10.00 +50 6.00 68.00 30.00 0.00 176.00 10.00 +51 47.00 47.00 13.00 0.00 203.00 10.00 +52 49.00 58.00 10.00 0.00 193.00 10.00 +53 27.00 43.00 9.00 0.00 208.00 10.00 +54 37.00 31.00 14.00 85.00 115.00 10.00 +55 57.00 29.00 18.00 0.00 197.00 10.00 +56 63.00 23.00 2.00 126.00 156.00 10.00 +57 53.00 12.00 6.00 0.00 190.00 10.00 +58 32.00 12.00 7.00 0.00 196.00 10.00 +59 36.00 26.00 18.00 180.00 210.00 10.00 +60 21.00 24.00 28.00 0.00 202.00 10.00 +61 17.00 34.00 3.00 0.00 201.00 10.00 +62 12.00 24.00 13.00 0.00 194.00 10.00 +63 24.00 58.00 19.00 48.00 78.00 10.00 +64 27.00 69.00 10.00 0.00 185.00 10.00 +65 15.00 77.00 9.00 0.00 173.00 10.00 +66 62.00 77.00 20.00 0.00 170.00 10.00 +67 49.00 73.00 25.00 0.00 179.00 10.00 +68 67.00 5.00 25.00 73.00 103.00 10.00 +69 56.00 39.00 36.00 0.00 198.00 10.00 +70 37.00 47.00 6.00 40.00 70.00 10.00 +71 37.00 56.00 5.00 0.00 198.00 10.00 +72 57.00 68.00 15.00 0.00 180.00 10.00 +73 47.00 16.00 25.00 0.00 197.00 10.00 +74 44.00 17.00 9.00 0.00 199.00 10.00 +75 46.00 13.00 8.00 139.00 169.00 10.00 +76 49.00 11.00 18.00 0.00 192.00 10.00 +77 49.00 42.00 13.00 63.00 93.00 10.00 +78 53.00 43.00 14.00 169.00 199.00 10.00 +79 61.00 52.00 3.00 0.00 188.00 10.00 +80 57.00 48.00 23.00 82.00 112.00 10.00 +81 56.00 37.00 6.00 0.00 198.00 10.00 +82 55.00 54.00 26.00 0.00 192.00 10.00 +83 15.00 47.00 16.00 0.00 196.00 10.00 +84 14.00 37.00 11.00 0.00 198.00 10.00 +85 11.00 31.00 7.00 91.00 121.00 10.00 +86 16.00 22.00 41.00 0.00 196.00 10.00 +87 4.00 18.00 35.00 0.00 184.00 10.00 +88 28.00 18.00 26.00 83.00 113.00 10.00 +89 26.00 52.00 9.00 0.00 200.00 10.00 +90 26.00 35.00 15.00 0.00 211.00 10.00 +91 31.00 67.00 3.00 0.00 187.00 10.00 +92 15.00 19.00 1.00 0.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 48.00 10.00 +94 18.00 24.00 22.00 0.00 199.00 10.00 +95 26.00 27.00 27.00 0.00 207.00 10.00 +96 25.00 24.00 20.00 0.00 205.00 10.00 +97 22.00 27.00 11.00 0.00 204.00 10.00 +98 25.00 21.00 12.00 0.00 202.00 10.00 +99 19.00 21.00 10.00 0.00 198.00 10.00 +100 20.00 26.00 9.00 73.00 103.00 10.00 +101 18.00 18.00 17.00 165.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r109.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r109.dat new file mode 100644 index 000000000..568f45cc2 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r109.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 133.00 198.00 10.00 +3 35.00 17.00 7.00 22.00 87.00 10.00 +4 55.00 45.00 13.00 98.00 143.00 10.00 +5 55.00 20.00 19.00 123.00 184.00 10.00 +6 15.00 30.00 26.00 20.00 93.00 10.00 +7 25.00 30.00 3.00 76.00 131.00 10.00 +8 20.00 50.00 5.00 61.00 110.00 10.00 +9 10.00 43.00 9.00 75.00 124.00 10.00 +10 55.00 60.00 16.00 74.00 129.00 10.00 +11 30.00 60.00 16.00 107.00 150.00 10.00 +12 20.00 65.00 12.00 42.00 101.00 10.00 +13 50.00 35.00 19.00 38.00 97.00 10.00 +14 30.00 25.00 23.00 131.00 196.00 10.00 +15 15.00 10.00 20.00 32.00 114.00 10.00 +16 30.00 5.00 8.00 35.00 96.00 10.00 +17 10.00 20.00 19.00 52.00 107.00 10.00 +18 5.00 30.00 2.00 124.00 189.00 10.00 +19 20.00 40.00 12.00 69.00 114.00 10.00 +20 15.00 60.00 17.00 52.00 109.00 10.00 +21 45.00 65.00 9.00 105.00 156.00 10.00 +22 45.00 20.00 11.00 37.00 96.00 10.00 +23 45.00 10.00 18.00 76.00 127.00 10.00 +24 55.00 5.00 29.00 43.00 102.00 10.00 +25 65.00 35.00 3.00 124.00 190.00 10.00 +26 65.00 20.00 6.00 121.00 186.00 10.00 +27 45.00 30.00 17.00 112.00 161.00 10.00 +28 35.00 40.00 16.00 8.00 75.00 10.00 +29 41.00 37.00 16.00 11.00 76.00 10.00 +30 64.00 42.00 9.00 37.00 98.00 10.00 +31 40.00 60.00 21.00 49.00 102.00 10.00 +32 31.00 52.00 27.00 24.00 85.00 10.00 +33 35.00 69.00 23.00 116.00 175.00 10.00 +34 53.00 52.00 11.00 24.00 92.00 10.00 +35 65.00 55.00 14.00 96.00 147.00 10.00 +36 63.00 65.00 8.00 116.00 178.00 10.00 +37 2.00 60.00 5.00 41.00 112.00 10.00 +38 20.00 20.00 8.00 113.00 164.00 10.00 +39 5.00 5.00 16.00 60.00 115.00 10.00 +40 60.00 12.00 31.00 33.00 110.00 10.00 +41 40.00 25.00 9.00 65.00 114.00 10.00 +42 42.00 7.00 5.00 72.00 131.00 10.00 +43 24.00 12.00 5.00 25.00 91.00 10.00 +44 23.00 3.00 7.00 111.00 162.00 10.00 +45 11.00 14.00 18.00 45.00 102.00 10.00 +46 6.00 38.00 16.00 29.00 99.00 10.00 +47 2.00 48.00 1.00 92.00 151.00 10.00 +48 8.00 56.00 27.00 34.00 105.00 10.00 +49 13.00 52.00 36.00 128.00 192.00 10.00 +50 6.00 68.00 30.00 93.00 132.00 10.00 +51 47.00 47.00 13.00 102.00 155.00 10.00 +52 49.00 58.00 10.00 64.00 121.00 10.00 +53 27.00 43.00 9.00 26.00 87.00 10.00 +54 37.00 31.00 14.00 75.00 124.00 10.00 +55 57.00 29.00 18.00 118.00 171.00 10.00 +56 63.00 23.00 2.00 111.00 170.00 10.00 +57 53.00 12.00 6.00 106.00 163.00 10.00 +58 32.00 12.00 7.00 77.00 134.00 10.00 +59 36.00 26.00 18.00 147.00 210.00 10.00 +60 21.00 24.00 28.00 17.00 100.00 10.00 +61 17.00 34.00 3.00 134.00 199.00 10.00 +62 12.00 24.00 13.00 55.00 106.00 10.00 +63 24.00 58.00 19.00 30.00 95.00 10.00 +64 27.00 69.00 10.00 34.00 103.00 10.00 +65 15.00 77.00 9.00 48.00 107.00 10.00 +66 62.00 77.00 20.00 49.00 113.00 10.00 +67 49.00 73.00 25.00 104.00 159.00 10.00 +68 67.00 5.00 25.00 59.00 116.00 10.00 +69 56.00 39.00 36.00 117.00 176.00 10.00 +70 37.00 47.00 6.00 23.00 86.00 10.00 +71 37.00 56.00 5.00 123.00 198.00 10.00 +72 57.00 68.00 15.00 54.00 109.00 10.00 +73 47.00 16.00 25.00 22.00 96.00 10.00 +74 44.00 17.00 9.00 56.00 109.00 10.00 +75 46.00 13.00 8.00 123.00 184.00 10.00 +76 49.00 11.00 18.00 45.00 102.00 10.00 +77 49.00 42.00 13.00 52.00 103.00 10.00 +78 53.00 43.00 14.00 136.00 200.00 10.00 +79 61.00 52.00 3.00 71.00 130.00 10.00 +80 57.00 48.00 23.00 72.00 121.00 10.00 +81 56.00 37.00 6.00 135.00 198.00 10.00 +82 55.00 54.00 26.00 78.00 119.00 10.00 +83 15.00 47.00 16.00 29.00 90.00 10.00 +84 14.00 37.00 11.00 21.00 89.00 10.00 +85 11.00 31.00 7.00 81.00 130.00 10.00 +86 16.00 22.00 41.00 70.00 121.00 10.00 +87 4.00 18.00 35.00 74.00 123.00 10.00 +88 28.00 18.00 26.00 79.00 116.00 10.00 +89 26.00 52.00 9.00 50.00 107.00 10.00 +90 26.00 35.00 15.00 139.00 211.00 10.00 +91 31.00 67.00 3.00 73.00 126.00 10.00 +92 15.00 19.00 1.00 132.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 88.00 10.00 +94 18.00 24.00 22.00 129.00 199.00 10.00 +95 26.00 27.00 27.00 81.00 128.00 10.00 +96 25.00 24.00 20.00 14.00 78.00 10.00 +97 22.00 27.00 11.00 114.00 165.00 10.00 +98 25.00 21.00 12.00 115.00 160.00 10.00 +99 19.00 21.00 10.00 32.00 93.00 10.00 +100 20.00 26.00 9.00 60.00 115.00 10.00 +101 18.00 18.00 17.00 123.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r110.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r110.dat new file mode 100644 index 000000000..099da734c --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r110.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 130.00 201.00 10.00 +3 35.00 17.00 7.00 20.00 89.00 10.00 +4 55.00 45.00 13.00 106.00 135.00 10.00 +5 55.00 20.00 19.00 71.00 195.00 10.00 +6 15.00 30.00 26.00 20.00 107.00 10.00 +7 25.00 30.00 3.00 54.00 153.00 10.00 +8 20.00 50.00 5.00 66.00 105.00 10.00 +9 10.00 43.00 9.00 61.00 138.00 10.00 +10 55.00 60.00 16.00 53.00 150.00 10.00 +11 30.00 60.00 16.00 101.00 156.00 10.00 +12 20.00 65.00 12.00 33.00 152.00 10.00 +13 50.00 35.00 19.00 38.00 97.00 10.00 +14 30.00 25.00 23.00 70.00 208.00 10.00 +15 15.00 10.00 20.00 32.00 137.00 10.00 +16 30.00 5.00 8.00 30.00 154.00 10.00 +17 10.00 20.00 19.00 54.00 105.00 10.00 +18 5.00 30.00 2.00 51.00 189.00 10.00 +19 20.00 40.00 12.00 77.00 106.00 10.00 +20 15.00 60.00 17.00 53.00 108.00 10.00 +21 45.00 65.00 9.00 109.00 152.00 10.00 +22 45.00 20.00 11.00 37.00 96.00 10.00 +23 45.00 10.00 18.00 59.00 144.00 10.00 +24 55.00 5.00 29.00 36.00 155.00 10.00 +25 65.00 35.00 3.00 118.00 190.00 10.00 +26 65.00 20.00 6.00 47.00 186.00 10.00 +27 45.00 30.00 17.00 117.00 156.00 10.00 +28 35.00 40.00 16.00 5.00 156.00 10.00 +29 41.00 37.00 16.00 8.00 79.00 10.00 +30 64.00 42.00 9.00 37.00 98.00 10.00 +31 40.00 60.00 21.00 28.00 123.00 10.00 +32 31.00 52.00 27.00 24.00 85.00 10.00 +33 35.00 69.00 23.00 116.00 175.00 10.00 +34 53.00 52.00 11.00 24.00 179.00 10.00 +35 65.00 55.00 14.00 100.00 143.00 10.00 +36 63.00 65.00 8.00 50.00 178.00 10.00 +37 2.00 60.00 5.00 41.00 178.00 10.00 +38 20.00 20.00 8.00 117.00 160.00 10.00 +39 5.00 5.00 16.00 42.00 145.00 10.00 +40 60.00 12.00 31.00 33.00 186.00 10.00 +41 40.00 25.00 9.00 51.00 128.00 10.00 +42 42.00 7.00 5.00 44.00 159.00 10.00 +43 24.00 12.00 5.00 25.00 172.00 10.00 +44 23.00 3.00 7.00 115.00 158.00 10.00 +45 11.00 14.00 18.00 31.00 138.00 10.00 +46 6.00 38.00 16.00 29.00 189.00 10.00 +47 2.00 48.00 1.00 93.00 150.00 10.00 +48 8.00 56.00 27.00 34.00 116.00 10.00 +49 13.00 52.00 36.00 125.00 192.00 10.00 +50 6.00 68.00 30.00 93.00 132.00 10.00 +51 47.00 47.00 13.00 105.00 152.00 10.00 +52 49.00 58.00 10.00 66.00 119.00 10.00 +53 27.00 43.00 9.00 25.00 88.00 10.00 +54 37.00 31.00 14.00 62.00 137.00 10.00 +55 57.00 29.00 18.00 121.00 168.00 10.00 +56 63.00 23.00 2.00 70.00 189.00 10.00 +57 53.00 12.00 6.00 81.00 188.00 10.00 +58 32.00 12.00 7.00 78.00 133.00 10.00 +59 36.00 26.00 18.00 79.00 210.00 10.00 +60 21.00 24.00 28.00 17.00 123.00 10.00 +61 17.00 34.00 3.00 130.00 201.00 10.00 +62 12.00 24.00 13.00 59.00 102.00 10.00 +63 24.00 58.00 19.00 25.00 164.00 10.00 +64 27.00 69.00 10.00 34.00 112.00 10.00 +65 15.00 77.00 9.00 46.00 165.00 10.00 +66 62.00 77.00 20.00 49.00 170.00 10.00 +67 49.00 73.00 25.00 77.00 179.00 10.00 +68 67.00 5.00 25.00 43.00 150.00 10.00 +69 56.00 39.00 36.00 82.00 198.00 10.00 +70 37.00 47.00 6.00 12.00 142.00 10.00 +71 37.00 56.00 5.00 21.00 198.00 10.00 +72 57.00 68.00 15.00 57.00 106.00 10.00 +73 47.00 16.00 25.00 22.00 110.00 10.00 +74 44.00 17.00 9.00 60.00 105.00 10.00 +75 46.00 13.00 8.00 73.00 195.00 10.00 +76 49.00 11.00 18.00 46.00 101.00 10.00 +77 49.00 42.00 13.00 36.00 119.00 10.00 +78 53.00 43.00 14.00 65.00 200.00 10.00 +79 61.00 52.00 3.00 43.00 158.00 10.00 +80 57.00 48.00 23.00 58.00 135.00 10.00 +81 56.00 37.00 6.00 69.00 198.00 10.00 +82 55.00 54.00 26.00 87.00 110.00 10.00 +83 15.00 47.00 16.00 28.00 91.00 10.00 +84 14.00 37.00 11.00 21.00 97.00 10.00 +85 11.00 31.00 7.00 68.00 143.00 10.00 +86 16.00 22.00 41.00 74.00 117.00 10.00 +87 4.00 18.00 35.00 79.00 118.00 10.00 +88 28.00 18.00 26.00 84.00 111.00 10.00 +89 26.00 52.00 9.00 24.00 133.00 10.00 +90 26.00 35.00 15.00 128.00 211.00 10.00 +91 31.00 67.00 3.00 76.00 123.00 10.00 +92 15.00 19.00 1.00 130.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 181.00 10.00 +94 18.00 24.00 22.00 41.00 199.00 10.00 +95 26.00 27.00 27.00 88.00 121.00 10.00 +96 25.00 24.00 20.00 14.00 83.00 10.00 +97 22.00 27.00 11.00 119.00 160.00 10.00 +98 25.00 21.00 12.00 122.00 153.00 10.00 +99 19.00 21.00 10.00 32.00 93.00 10.00 +100 20.00 26.00 9.00 38.00 137.00 10.00 +101 18.00 18.00 17.00 28.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r111.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r111.dat new file mode 100644 index 000000000..60d1a6368 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r111.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 15.00 204.00 10.00 +3 35.00 17.00 7.00 18.00 202.00 10.00 +4 55.00 45.00 13.00 54.00 187.00 10.00 +5 55.00 20.00 19.00 138.00 169.00 10.00 +6 15.00 30.00 26.00 20.00 199.00 10.00 +7 25.00 30.00 3.00 76.00 131.00 10.00 +8 20.00 50.00 5.00 21.00 170.00 10.00 +9 10.00 43.00 9.00 87.00 112.00 10.00 +10 55.00 60.00 16.00 88.00 115.00 10.00 +11 30.00 60.00 16.00 107.00 150.00 10.00 +12 20.00 65.00 12.00 57.00 86.00 10.00 +13 50.00 35.00 19.00 15.00 192.00 10.00 +14 30.00 25.00 23.00 147.00 180.00 10.00 +15 15.00 10.00 20.00 32.00 187.00 10.00 +16 30.00 5.00 8.00 50.00 81.00 10.00 +17 10.00 20.00 19.00 29.00 139.00 10.00 +18 5.00 30.00 2.00 124.00 189.00 10.00 +19 20.00 40.00 12.00 47.00 136.00 10.00 +20 15.00 60.00 17.00 32.00 146.00 10.00 +21 45.00 65.00 9.00 79.00 182.00 10.00 +22 45.00 20.00 11.00 18.00 195.00 10.00 +23 45.00 10.00 18.00 76.00 127.00 10.00 +24 55.00 5.00 29.00 58.00 87.00 10.00 +25 65.00 35.00 3.00 58.00 190.00 10.00 +26 65.00 20.00 6.00 153.00 186.00 10.00 +27 45.00 30.00 17.00 58.00 208.00 10.00 +28 35.00 40.00 16.00 8.00 75.00 10.00 +29 41.00 37.00 16.00 6.00 136.00 10.00 +30 64.00 42.00 9.00 29.00 150.00 10.00 +31 40.00 60.00 21.00 49.00 102.00 10.00 +32 31.00 52.00 27.00 17.00 198.00 10.00 +33 35.00 69.00 23.00 67.00 186.00 10.00 +34 53.00 52.00 11.00 24.00 92.00 10.00 +35 65.00 55.00 14.00 36.00 183.00 10.00 +36 63.00 65.00 8.00 116.00 178.00 10.00 +37 2.00 60.00 5.00 41.00 112.00 10.00 +38 20.00 20.00 8.00 42.00 198.00 10.00 +39 5.00 5.00 16.00 74.00 101.00 10.00 +40 60.00 12.00 31.00 33.00 110.00 10.00 +41 40.00 25.00 9.00 65.00 114.00 10.00 +42 42.00 7.00 5.00 72.00 131.00 10.00 +43 24.00 12.00 5.00 25.00 91.00 10.00 +44 23.00 3.00 7.00 82.00 185.00 10.00 +45 11.00 14.00 18.00 59.00 88.00 10.00 +46 6.00 38.00 16.00 29.00 99.00 10.00 +47 2.00 48.00 1.00 63.00 180.00 10.00 +48 8.00 56.00 27.00 34.00 176.00 10.00 +49 13.00 52.00 36.00 27.00 192.00 10.00 +50 6.00 68.00 30.00 93.00 132.00 10.00 +51 47.00 47.00 13.00 41.00 203.00 10.00 +52 49.00 58.00 10.00 36.00 149.00 10.00 +53 27.00 43.00 9.00 11.00 195.00 10.00 +54 37.00 31.00 14.00 87.00 112.00 10.00 +55 57.00 29.00 18.00 90.00 197.00 10.00 +56 63.00 23.00 2.00 126.00 155.00 10.00 +57 53.00 12.00 6.00 106.00 163.00 10.00 +58 32.00 12.00 7.00 48.00 163.00 10.00 +59 36.00 26.00 18.00 178.00 210.00 10.00 +60 21.00 24.00 28.00 17.00 202.00 10.00 +61 17.00 34.00 3.00 70.00 201.00 10.00 +62 12.00 24.00 13.00 29.00 132.00 10.00 +63 24.00 58.00 19.00 46.00 79.00 10.00 +64 27.00 69.00 10.00 34.00 172.00 10.00 +65 15.00 77.00 9.00 48.00 107.00 10.00 +66 62.00 77.00 20.00 49.00 113.00 10.00 +67 49.00 73.00 25.00 104.00 159.00 10.00 +68 67.00 5.00 25.00 73.00 102.00 10.00 +69 56.00 39.00 36.00 117.00 176.00 10.00 +70 37.00 47.00 6.00 39.00 70.00 10.00 +71 37.00 56.00 5.00 123.00 198.00 10.00 +72 57.00 68.00 15.00 39.00 148.00 10.00 +73 47.00 16.00 25.00 22.00 197.00 10.00 +74 44.00 17.00 9.00 30.00 135.00 10.00 +75 46.00 13.00 8.00 138.00 169.00 10.00 +76 49.00 11.00 18.00 27.00 192.00 10.00 +77 49.00 42.00 13.00 65.00 90.00 10.00 +78 53.00 43.00 14.00 168.00 199.00 10.00 +79 61.00 52.00 3.00 71.00 130.00 10.00 +80 57.00 48.00 23.00 84.00 109.00 10.00 +81 56.00 37.00 6.00 135.00 198.00 10.00 +82 55.00 54.00 26.00 57.00 140.00 10.00 +83 15.00 47.00 16.00 23.00 196.00 10.00 +84 14.00 37.00 11.00 21.00 198.00 10.00 +85 11.00 31.00 7.00 93.00 118.00 10.00 +86 16.00 22.00 41.00 23.00 177.00 10.00 +87 4.00 18.00 35.00 49.00 148.00 10.00 +88 28.00 18.00 26.00 88.00 107.00 10.00 +89 26.00 52.00 9.00 50.00 107.00 10.00 +90 26.00 35.00 15.00 68.00 211.00 10.00 +91 31.00 67.00 3.00 46.00 153.00 10.00 +92 15.00 19.00 1.00 25.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 53.00 10.00 +94 18.00 24.00 22.00 129.00 199.00 10.00 +95 26.00 27.00 27.00 35.00 174.00 10.00 +96 25.00 24.00 20.00 14.00 205.00 10.00 +97 22.00 27.00 11.00 51.00 204.00 10.00 +98 25.00 21.00 12.00 92.00 183.00 10.00 +99 19.00 21.00 10.00 21.00 198.00 10.00 +100 20.00 26.00 9.00 74.00 101.00 10.00 +101 18.00 18.00 17.00 159.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r112.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r112.dat new file mode 100644 index 000000000..9fc2ffbbd --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r112.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 230.00 0.00 +2 41.00 49.00 10.00 73.00 204.00 10.00 +3 35.00 17.00 7.00 18.00 147.00 10.00 +4 55.00 45.00 13.00 76.00 165.00 10.00 +5 55.00 20.00 19.00 73.00 195.00 10.00 +6 15.00 30.00 26.00 20.00 167.00 10.00 +7 25.00 30.00 3.00 49.00 158.00 10.00 +8 20.00 50.00 5.00 36.00 135.00 10.00 +9 10.00 43.00 9.00 50.00 149.00 10.00 +10 55.00 60.00 16.00 47.00 156.00 10.00 +11 30.00 60.00 16.00 85.00 172.00 10.00 +12 20.00 65.00 12.00 33.00 152.00 10.00 +13 50.00 35.00 19.00 15.00 133.00 10.00 +14 30.00 25.00 23.00 79.00 208.00 10.00 +15 15.00 10.00 20.00 32.00 187.00 10.00 +16 30.00 5.00 8.00 30.00 152.00 10.00 +17 10.00 20.00 19.00 29.00 139.00 10.00 +18 5.00 30.00 2.00 60.00 189.00 10.00 +19 20.00 40.00 12.00 47.00 136.00 10.00 +20 15.00 60.00 17.00 32.00 146.00 10.00 +21 45.00 65.00 9.00 79.00 182.00 10.00 +22 45.00 20.00 11.00 18.00 136.00 10.00 +23 45.00 10.00 18.00 50.00 153.00 10.00 +24 55.00 5.00 29.00 36.00 155.00 10.00 +25 65.00 35.00 3.00 58.00 190.00 10.00 +26 65.00 20.00 6.00 56.00 186.00 10.00 +27 45.00 30.00 17.00 87.00 186.00 10.00 +28 35.00 40.00 16.00 5.00 140.00 10.00 +29 41.00 37.00 16.00 6.00 136.00 10.00 +30 64.00 42.00 9.00 29.00 150.00 10.00 +31 40.00 60.00 21.00 25.00 132.00 10.00 +32 31.00 52.00 27.00 17.00 138.00 10.00 +33 35.00 69.00 23.00 67.00 186.00 10.00 +34 53.00 52.00 11.00 24.00 161.00 10.00 +35 65.00 55.00 14.00 70.00 173.00 10.00 +36 63.00 65.00 8.00 54.00 178.00 10.00 +37 2.00 60.00 5.00 41.00 178.00 10.00 +38 20.00 20.00 8.00 87.00 190.00 10.00 +39 5.00 5.00 16.00 42.00 153.00 10.00 +40 60.00 12.00 31.00 33.00 186.00 10.00 +41 40.00 25.00 9.00 40.00 139.00 10.00 +42 42.00 7.00 5.00 43.00 160.00 10.00 +43 24.00 12.00 5.00 25.00 158.00 10.00 +44 23.00 3.00 7.00 82.00 185.00 10.00 +45 11.00 14.00 18.00 31.00 144.00 10.00 +46 6.00 38.00 16.00 29.00 169.00 10.00 +47 2.00 48.00 1.00 63.00 180.00 10.00 +48 8.00 56.00 27.00 34.00 176.00 10.00 +49 13.00 52.00 36.00 65.00 192.00 10.00 +50 6.00 68.00 30.00 73.00 152.00 10.00 +51 47.00 47.00 13.00 75.00 182.00 10.00 +52 49.00 58.00 10.00 36.00 149.00 10.00 +53 27.00 43.00 9.00 11.00 133.00 10.00 +54 37.00 31.00 14.00 51.00 148.00 10.00 +55 57.00 29.00 18.00 90.00 197.00 10.00 +56 63.00 23.00 2.00 69.00 189.00 10.00 +57 53.00 12.00 6.00 76.00 190.00 10.00 +58 32.00 12.00 7.00 48.00 163.00 10.00 +59 36.00 26.00 18.00 84.00 210.00 10.00 +60 21.00 24.00 28.00 17.00 183.00 10.00 +61 17.00 34.00 3.00 70.00 201.00 10.00 +62 12.00 24.00 13.00 29.00 132.00 10.00 +63 24.00 58.00 19.00 25.00 154.00 10.00 +64 27.00 69.00 10.00 34.00 172.00 10.00 +65 15.00 77.00 9.00 46.00 165.00 10.00 +66 62.00 77.00 20.00 49.00 170.00 10.00 +67 49.00 73.00 25.00 68.00 179.00 10.00 +68 67.00 5.00 25.00 43.00 156.00 10.00 +69 56.00 39.00 36.00 80.00 198.00 10.00 +70 37.00 47.00 6.00 12.00 137.00 10.00 +71 37.00 56.00 5.00 48.00 198.00 10.00 +72 57.00 68.00 15.00 39.00 148.00 10.00 +73 47.00 16.00 25.00 22.00 170.00 10.00 +74 44.00 17.00 9.00 30.00 135.00 10.00 +75 46.00 13.00 8.00 74.00 195.00 10.00 +76 49.00 11.00 18.00 27.00 141.00 10.00 +77 49.00 42.00 13.00 27.00 128.00 10.00 +78 53.00 43.00 14.00 72.00 200.00 10.00 +79 61.00 52.00 3.00 42.00 159.00 10.00 +80 57.00 48.00 23.00 47.00 146.00 10.00 +81 56.00 37.00 6.00 73.00 198.00 10.00 +82 55.00 54.00 26.00 57.00 140.00 10.00 +83 15.00 47.00 16.00 23.00 146.00 10.00 +84 14.00 37.00 11.00 21.00 157.00 10.00 +85 11.00 31.00 7.00 57.00 154.00 10.00 +86 16.00 22.00 41.00 44.00 147.00 10.00 +87 4.00 18.00 35.00 49.00 148.00 10.00 +88 28.00 18.00 26.00 61.00 134.00 10.00 +89 26.00 52.00 9.00 21.00 136.00 10.00 +90 26.00 35.00 15.00 68.00 211.00 10.00 +91 31.00 67.00 3.00 46.00 153.00 10.00 +92 15.00 19.00 1.00 70.00 194.00 10.00 +93 22.00 22.00 2.00 18.00 159.00 10.00 +94 18.00 24.00 22.00 60.00 199.00 10.00 +95 26.00 27.00 27.00 58.00 151.00 10.00 +96 25.00 24.00 20.00 14.00 143.00 10.00 +97 22.00 27.00 11.00 89.00 190.00 10.00 +98 25.00 21.00 12.00 92.00 183.00 10.00 +99 19.00 21.00 10.00 21.00 142.00 10.00 +100 20.00 26.00 9.00 33.00 142.00 10.00 +101 18.00 18.00 17.00 51.00 195.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r201.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r201.dat new file mode 100644 index 000000000..2e1690de3 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r201.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 707.00 848.00 10.00 +3 35.00 17.00 7.00 143.00 282.00 10.00 +4 55.00 45.00 13.00 527.00 584.00 10.00 +5 55.00 20.00 19.00 678.00 801.00 10.00 +6 15.00 30.00 26.00 34.00 209.00 10.00 +7 25.00 30.00 3.00 415.00 514.00 10.00 +8 20.00 50.00 5.00 331.00 410.00 10.00 +9 10.00 43.00 9.00 404.00 481.00 10.00 +10 55.00 60.00 16.00 400.00 497.00 10.00 +11 30.00 60.00 16.00 577.00 632.00 10.00 +12 20.00 65.00 12.00 206.00 325.00 10.00 +13 50.00 35.00 19.00 228.00 345.00 10.00 +14 30.00 25.00 23.00 690.00 827.00 10.00 +15 15.00 10.00 20.00 32.00 243.00 10.00 +16 30.00 5.00 8.00 175.00 300.00 10.00 +17 10.00 20.00 19.00 272.00 373.00 10.00 +18 5.00 30.00 2.00 733.00 870.00 10.00 +19 20.00 40.00 12.00 377.00 434.00 10.00 +20 15.00 60.00 17.00 269.00 378.00 10.00 +21 45.00 65.00 9.00 581.00 666.00 10.00 +22 45.00 20.00 11.00 214.00 331.00 10.00 +23 45.00 10.00 18.00 409.00 494.00 10.00 +24 55.00 5.00 29.00 206.00 325.00 10.00 +25 65.00 35.00 3.00 704.00 847.00 10.00 +26 65.00 20.00 6.00 817.00 956.00 10.00 +27 45.00 30.00 17.00 588.00 667.00 10.00 +28 35.00 40.00 16.00 104.00 255.00 10.00 +29 41.00 37.00 16.00 114.00 255.00 10.00 +30 64.00 42.00 9.00 190.00 313.00 10.00 +31 40.00 60.00 21.00 259.00 354.00 10.00 +32 31.00 52.00 27.00 152.00 275.00 10.00 +33 35.00 69.00 23.00 660.00 777.00 10.00 +34 53.00 52.00 11.00 45.00 200.00 10.00 +35 65.00 55.00 14.00 529.00 614.00 10.00 +36 63.00 65.00 8.00 686.00 813.00 10.00 +37 2.00 60.00 5.00 41.00 208.00 10.00 +38 20.00 20.00 8.00 606.00 693.00 10.00 +39 5.00 5.00 16.00 302.00 405.00 10.00 +40 60.00 12.00 31.00 33.00 224.00 10.00 +41 40.00 25.00 9.00 360.00 437.00 10.00 +42 42.00 7.00 5.00 396.00 511.00 10.00 +43 24.00 12.00 5.00 25.00 172.00 10.00 +44 23.00 3.00 7.00 620.00 705.00 10.00 +45 11.00 14.00 18.00 233.00 340.00 10.00 +46 6.00 38.00 16.00 29.00 189.00 10.00 +47 2.00 48.00 1.00 515.00 628.00 10.00 +48 8.00 56.00 27.00 85.00 250.00 10.00 +49 13.00 52.00 36.00 773.00 906.00 10.00 +50 6.00 68.00 30.00 501.00 540.00 10.00 +51 47.00 47.00 13.00 547.00 642.00 10.00 +52 49.00 58.00 10.00 348.00 453.00 10.00 +53 27.00 43.00 9.00 174.00 299.00 10.00 +54 37.00 31.00 14.00 414.00 489.00 10.00 +55 57.00 29.00 18.00 641.00 734.00 10.00 +56 63.00 23.00 2.00 620.00 739.00 10.00 +57 53.00 12.00 6.00 585.00 692.00 10.00 +58 32.00 12.00 7.00 421.00 530.00 10.00 +59 36.00 26.00 18.00 849.00 980.00 10.00 +60 21.00 24.00 28.00 17.00 229.00 10.00 +61 17.00 34.00 3.00 721.00 862.00 10.00 +62 12.00 24.00 13.00 290.00 377.00 10.00 +63 24.00 58.00 19.00 163.00 302.00 10.00 +64 27.00 69.00 10.00 34.00 191.00 10.00 +65 15.00 77.00 9.00 214.00 333.00 10.00 +66 62.00 77.00 20.00 49.00 188.00 10.00 +67 49.00 73.00 25.00 592.00 693.00 10.00 +68 67.00 5.00 25.00 294.00 401.00 10.00 +69 56.00 39.00 36.00 637.00 752.00 10.00 +70 37.00 47.00 6.00 162.00 293.00 10.00 +71 37.00 56.00 5.00 788.00 968.00 10.00 +72 57.00 68.00 15.00 268.00 367.00 10.00 +73 47.00 16.00 25.00 31.00 208.00 10.00 +74 44.00 17.00 9.00 308.00 399.00 10.00 +75 46.00 13.00 8.00 681.00 802.00 10.00 +76 49.00 11.00 18.00 236.00 345.00 10.00 +77 49.00 42.00 13.00 290.00 373.00 10.00 +78 53.00 43.00 14.00 817.00 952.00 10.00 +79 61.00 52.00 3.00 384.00 499.00 10.00 +80 57.00 48.00 23.00 388.00 465.00 10.00 +81 56.00 37.00 6.00 839.00 968.00 10.00 +82 55.00 54.00 26.00 411.00 456.00 10.00 +83 15.00 47.00 16.00 162.00 289.00 10.00 +84 14.00 37.00 11.00 96.00 249.00 10.00 +85 11.00 31.00 7.00 436.00 511.00 10.00 +86 16.00 22.00 41.00 376.00 461.00 10.00 +87 4.00 18.00 35.00 388.00 465.00 10.00 +88 28.00 18.00 26.00 420.00 447.00 10.00 +89 26.00 52.00 9.00 279.00 388.00 10.00 +90 26.00 35.00 15.00 755.00 920.00 10.00 +91 31.00 67.00 3.00 392.00 487.00 10.00 +92 15.00 19.00 1.00 739.00 866.00 10.00 +93 22.00 22.00 2.00 18.00 181.00 10.00 +94 18.00 24.00 22.00 811.00 969.00 10.00 +95 26.00 27.00 27.00 436.00 503.00 10.00 +96 25.00 24.00 20.00 92.00 231.00 10.00 +97 22.00 27.00 11.00 607.00 690.00 10.00 +98 25.00 21.00 12.00 612.00 673.00 10.00 +99 19.00 21.00 10.00 183.00 306.00 10.00 +100 20.00 26.00 9.00 333.00 432.00 10.00 +101 18.00 18.00 17.00 798.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r202.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r202.dat new file mode 100644 index 000000000..6e0f5f08b --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r202.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 0.00 974.00 10.00 +3 35.00 17.00 7.00 0.00 972.00 10.00 +4 55.00 45.00 13.00 0.00 967.00 10.00 +5 55.00 20.00 19.00 678.00 801.00 10.00 +6 15.00 30.00 26.00 0.00 969.00 10.00 +7 25.00 30.00 3.00 415.00 514.00 10.00 +8 20.00 50.00 5.00 0.00 968.00 10.00 +9 10.00 43.00 9.00 404.00 481.00 10.00 +10 55.00 60.00 16.00 400.00 497.00 10.00 +11 30.00 60.00 16.00 577.00 632.00 10.00 +12 20.00 65.00 12.00 206.00 325.00 10.00 +13 50.00 35.00 19.00 0.00 975.00 10.00 +14 30.00 25.00 23.00 690.00 827.00 10.00 +15 15.00 10.00 20.00 32.00 243.00 10.00 +16 30.00 5.00 8.00 175.00 300.00 10.00 +17 10.00 20.00 19.00 272.00 373.00 10.00 +18 5.00 30.00 2.00 733.00 870.00 10.00 +19 20.00 40.00 12.00 377.00 434.00 10.00 +20 15.00 60.00 17.00 269.00 378.00 10.00 +21 45.00 65.00 9.00 581.00 666.00 10.00 +22 45.00 20.00 11.00 0.00 971.00 10.00 +23 45.00 10.00 18.00 409.00 494.00 10.00 +24 55.00 5.00 29.00 206.00 325.00 10.00 +25 65.00 35.00 3.00 704.00 847.00 10.00 +26 65.00 20.00 6.00 817.00 956.00 10.00 +27 45.00 30.00 17.00 0.00 978.00 10.00 +28 35.00 40.00 16.00 104.00 255.00 10.00 +29 41.00 37.00 16.00 114.00 255.00 10.00 +30 64.00 42.00 9.00 190.00 313.00 10.00 +31 40.00 60.00 21.00 259.00 354.00 10.00 +32 31.00 52.00 27.00 0.00 972.00 10.00 +33 35.00 69.00 23.00 660.00 777.00 10.00 +34 53.00 52.00 11.00 45.00 200.00 10.00 +35 65.00 55.00 14.00 0.00 953.00 10.00 +36 63.00 65.00 8.00 686.00 813.00 10.00 +37 2.00 60.00 5.00 41.00 208.00 10.00 +38 20.00 20.00 8.00 0.00 968.00 10.00 +39 5.00 5.00 16.00 302.00 405.00 10.00 +40 60.00 12.00 31.00 33.00 224.00 10.00 +41 40.00 25.00 9.00 360.00 437.00 10.00 +42 42.00 7.00 5.00 396.00 511.00 10.00 +43 24.00 12.00 5.00 25.00 172.00 10.00 +44 23.00 3.00 7.00 620.00 705.00 10.00 +45 11.00 14.00 18.00 233.00 340.00 10.00 +46 6.00 38.00 16.00 29.00 189.00 10.00 +47 2.00 48.00 1.00 515.00 628.00 10.00 +48 8.00 56.00 27.00 85.00 250.00 10.00 +49 13.00 52.00 36.00 0.00 962.00 10.00 +50 6.00 68.00 30.00 501.00 540.00 10.00 +51 47.00 47.00 13.00 0.00 973.00 10.00 +52 49.00 58.00 10.00 348.00 453.00 10.00 +53 27.00 43.00 9.00 0.00 978.00 10.00 +54 37.00 31.00 14.00 414.00 489.00 10.00 +55 57.00 29.00 18.00 641.00 734.00 10.00 +56 63.00 23.00 2.00 620.00 739.00 10.00 +57 53.00 12.00 6.00 585.00 692.00 10.00 +58 32.00 12.00 7.00 421.00 530.00 10.00 +59 36.00 26.00 18.00 849.00 980.00 10.00 +60 21.00 24.00 28.00 0.00 972.00 10.00 +61 17.00 34.00 3.00 721.00 862.00 10.00 +62 12.00 24.00 13.00 290.00 377.00 10.00 +63 24.00 58.00 19.00 163.00 302.00 10.00 +64 27.00 69.00 10.00 34.00 191.00 10.00 +65 15.00 77.00 9.00 214.00 333.00 10.00 +66 62.00 77.00 20.00 49.00 188.00 10.00 +67 49.00 73.00 25.00 592.00 693.00 10.00 +68 67.00 5.00 25.00 294.00 401.00 10.00 +69 56.00 39.00 36.00 637.00 752.00 10.00 +70 37.00 47.00 6.00 162.00 293.00 10.00 +71 37.00 56.00 5.00 788.00 968.00 10.00 +72 57.00 68.00 15.00 268.00 367.00 10.00 +73 47.00 16.00 25.00 0.00 967.00 10.00 +74 44.00 17.00 9.00 308.00 399.00 10.00 +75 46.00 13.00 8.00 681.00 802.00 10.00 +76 49.00 11.00 18.00 0.00 962.00 10.00 +77 49.00 42.00 13.00 290.00 373.00 10.00 +78 53.00 43.00 14.00 817.00 952.00 10.00 +79 61.00 52.00 3.00 384.00 499.00 10.00 +80 57.00 48.00 23.00 388.00 465.00 10.00 +81 56.00 37.00 6.00 839.00 968.00 10.00 +82 55.00 54.00 26.00 411.00 456.00 10.00 +83 15.00 47.00 16.00 0.00 966.00 10.00 +84 14.00 37.00 11.00 0.00 968.00 10.00 +85 11.00 31.00 7.00 436.00 511.00 10.00 +86 16.00 22.00 41.00 0.00 966.00 10.00 +87 4.00 18.00 35.00 388.00 465.00 10.00 +88 28.00 18.00 26.00 420.00 447.00 10.00 +89 26.00 52.00 9.00 279.00 388.00 10.00 +90 26.00 35.00 15.00 755.00 920.00 10.00 +91 31.00 67.00 3.00 392.00 487.00 10.00 +92 15.00 19.00 1.00 0.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 181.00 10.00 +94 18.00 24.00 22.00 811.00 969.00 10.00 +95 26.00 27.00 27.00 0.00 977.00 10.00 +96 25.00 24.00 20.00 0.00 975.00 10.00 +97 22.00 27.00 11.00 0.00 974.00 10.00 +98 25.00 21.00 12.00 612.00 673.00 10.00 +99 19.00 21.00 10.00 0.00 968.00 10.00 +100 20.00 26.00 9.00 333.00 432.00 10.00 +101 18.00 18.00 17.00 798.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r203.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r203.dat new file mode 100644 index 000000000..ddcb9ccd6 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r203.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 0.00 974.00 10.00 +3 35.00 17.00 7.00 0.00 972.00 10.00 +4 55.00 45.00 13.00 0.00 967.00 10.00 +5 55.00 20.00 19.00 678.00 801.00 10.00 +6 15.00 30.00 26.00 0.00 969.00 10.00 +7 25.00 30.00 3.00 415.00 514.00 10.00 +8 20.00 50.00 5.00 0.00 968.00 10.00 +9 10.00 43.00 9.00 404.00 481.00 10.00 +10 55.00 60.00 16.00 400.00 497.00 10.00 +11 30.00 60.00 16.00 577.00 632.00 10.00 +12 20.00 65.00 12.00 206.00 325.00 10.00 +13 50.00 35.00 19.00 0.00 975.00 10.00 +14 30.00 25.00 23.00 690.00 827.00 10.00 +15 15.00 10.00 20.00 0.00 957.00 10.00 +16 30.00 5.00 8.00 175.00 300.00 10.00 +17 10.00 20.00 19.00 0.00 960.00 10.00 +18 5.00 30.00 2.00 733.00 870.00 10.00 +19 20.00 40.00 12.00 0.00 974.00 10.00 +20 15.00 60.00 17.00 0.00 957.00 10.00 +21 45.00 65.00 9.00 0.00 958.00 10.00 +22 45.00 20.00 11.00 0.00 971.00 10.00 +23 45.00 10.00 18.00 409.00 494.00 10.00 +24 55.00 5.00 29.00 206.00 325.00 10.00 +25 65.00 35.00 3.00 0.00 960.00 10.00 +26 65.00 20.00 6.00 817.00 956.00 10.00 +27 45.00 30.00 17.00 0.00 978.00 10.00 +28 35.00 40.00 16.00 104.00 255.00 10.00 +29 41.00 37.00 16.00 0.00 983.00 10.00 +30 64.00 42.00 9.00 0.00 960.00 10.00 +31 40.00 60.00 21.00 259.00 354.00 10.00 +32 31.00 52.00 27.00 0.00 972.00 10.00 +33 35.00 69.00 23.00 0.00 956.00 10.00 +34 53.00 52.00 11.00 45.00 200.00 10.00 +35 65.00 55.00 14.00 0.00 953.00 10.00 +36 63.00 65.00 8.00 686.00 813.00 10.00 +37 2.00 60.00 5.00 41.00 208.00 10.00 +38 20.00 20.00 8.00 0.00 968.00 10.00 +39 5.00 5.00 16.00 302.00 405.00 10.00 +40 60.00 12.00 31.00 33.00 224.00 10.00 +41 40.00 25.00 9.00 360.00 437.00 10.00 +42 42.00 7.00 5.00 396.00 511.00 10.00 +43 24.00 12.00 5.00 25.00 172.00 10.00 +44 23.00 3.00 7.00 0.00 955.00 10.00 +45 11.00 14.00 18.00 233.00 340.00 10.00 +46 6.00 38.00 16.00 29.00 189.00 10.00 +47 2.00 48.00 1.00 0.00 954.00 10.00 +48 8.00 56.00 27.00 0.00 955.00 10.00 +49 13.00 52.00 36.00 0.00 962.00 10.00 +50 6.00 68.00 30.00 501.00 540.00 10.00 +51 47.00 47.00 13.00 0.00 973.00 10.00 +52 49.00 58.00 10.00 0.00 963.00 10.00 +53 27.00 43.00 9.00 0.00 978.00 10.00 +54 37.00 31.00 14.00 414.00 489.00 10.00 +55 57.00 29.00 18.00 0.00 967.00 10.00 +56 63.00 23.00 2.00 620.00 739.00 10.00 +57 53.00 12.00 6.00 585.00 692.00 10.00 +58 32.00 12.00 7.00 0.00 966.00 10.00 +59 36.00 26.00 18.00 849.00 980.00 10.00 +60 21.00 24.00 28.00 0.00 972.00 10.00 +61 17.00 34.00 3.00 0.00 971.00 10.00 +62 12.00 24.00 13.00 0.00 964.00 10.00 +63 24.00 58.00 19.00 163.00 302.00 10.00 +64 27.00 69.00 10.00 0.00 955.00 10.00 +65 15.00 77.00 9.00 214.00 333.00 10.00 +66 62.00 77.00 20.00 49.00 188.00 10.00 +67 49.00 73.00 25.00 592.00 693.00 10.00 +68 67.00 5.00 25.00 294.00 401.00 10.00 +69 56.00 39.00 36.00 637.00 752.00 10.00 +70 37.00 47.00 6.00 162.00 293.00 10.00 +71 37.00 56.00 5.00 788.00 968.00 10.00 +72 57.00 68.00 15.00 0.00 950.00 10.00 +73 47.00 16.00 25.00 0.00 967.00 10.00 +74 44.00 17.00 9.00 0.00 969.00 10.00 +75 46.00 13.00 8.00 681.00 802.00 10.00 +76 49.00 11.00 18.00 0.00 962.00 10.00 +77 49.00 42.00 13.00 290.00 373.00 10.00 +78 53.00 43.00 14.00 817.00 952.00 10.00 +79 61.00 52.00 3.00 384.00 499.00 10.00 +80 57.00 48.00 23.00 388.00 465.00 10.00 +81 56.00 37.00 6.00 839.00 968.00 10.00 +82 55.00 54.00 26.00 0.00 962.00 10.00 +83 15.00 47.00 16.00 0.00 966.00 10.00 +84 14.00 37.00 11.00 0.00 968.00 10.00 +85 11.00 31.00 7.00 436.00 511.00 10.00 +86 16.00 22.00 41.00 0.00 966.00 10.00 +87 4.00 18.00 35.00 0.00 954.00 10.00 +88 28.00 18.00 26.00 420.00 447.00 10.00 +89 26.00 52.00 9.00 279.00 388.00 10.00 +90 26.00 35.00 15.00 0.00 981.00 10.00 +91 31.00 67.00 3.00 0.00 957.00 10.00 +92 15.00 19.00 1.00 0.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 181.00 10.00 +94 18.00 24.00 22.00 811.00 969.00 10.00 +95 26.00 27.00 27.00 0.00 977.00 10.00 +96 25.00 24.00 20.00 0.00 975.00 10.00 +97 22.00 27.00 11.00 0.00 974.00 10.00 +98 25.00 21.00 12.00 0.00 972.00 10.00 +99 19.00 21.00 10.00 0.00 968.00 10.00 +100 20.00 26.00 9.00 333.00 432.00 10.00 +101 18.00 18.00 17.00 798.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r204.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r204.dat new file mode 100644 index 000000000..952465c8a --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r204.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 0.00 974.00 10.00 +3 35.00 17.00 7.00 0.00 972.00 10.00 +4 55.00 45.00 13.00 0.00 967.00 10.00 +5 55.00 20.00 19.00 678.00 801.00 10.00 +6 15.00 30.00 26.00 0.00 969.00 10.00 +7 25.00 30.00 3.00 0.00 978.00 10.00 +8 20.00 50.00 5.00 0.00 968.00 10.00 +9 10.00 43.00 9.00 404.00 481.00 10.00 +10 55.00 60.00 16.00 400.00 497.00 10.00 +11 30.00 60.00 16.00 0.00 964.00 10.00 +12 20.00 65.00 12.00 206.00 325.00 10.00 +13 50.00 35.00 19.00 0.00 975.00 10.00 +14 30.00 25.00 23.00 690.00 827.00 10.00 +15 15.00 10.00 20.00 0.00 957.00 10.00 +16 30.00 5.00 8.00 175.00 300.00 10.00 +17 10.00 20.00 19.00 0.00 960.00 10.00 +18 5.00 30.00 2.00 0.00 959.00 10.00 +19 20.00 40.00 12.00 0.00 974.00 10.00 +20 15.00 60.00 17.00 0.00 957.00 10.00 +21 45.00 65.00 9.00 0.00 958.00 10.00 +22 45.00 20.00 11.00 0.00 971.00 10.00 +23 45.00 10.00 18.00 0.00 963.00 10.00 +24 55.00 5.00 29.00 206.00 325.00 10.00 +25 65.00 35.00 3.00 0.00 960.00 10.00 +26 65.00 20.00 6.00 817.00 956.00 10.00 +27 45.00 30.00 17.00 0.00 978.00 10.00 +28 35.00 40.00 16.00 0.00 985.00 10.00 +29 41.00 37.00 16.00 0.00 983.00 10.00 +30 64.00 42.00 9.00 0.00 960.00 10.00 +31 40.00 60.00 21.00 0.00 964.00 10.00 +32 31.00 52.00 27.00 0.00 972.00 10.00 +33 35.00 69.00 23.00 0.00 956.00 10.00 +34 53.00 52.00 11.00 0.00 965.00 10.00 +35 65.00 55.00 14.00 0.00 953.00 10.00 +36 63.00 65.00 8.00 0.00 948.00 10.00 +37 2.00 60.00 5.00 0.00 948.00 10.00 +38 20.00 20.00 8.00 0.00 968.00 10.00 +39 5.00 5.00 16.00 302.00 405.00 10.00 +40 60.00 12.00 31.00 0.00 956.00 10.00 +41 40.00 25.00 9.00 0.00 978.00 10.00 +42 42.00 7.00 5.00 0.00 961.00 10.00 +43 24.00 12.00 5.00 0.00 964.00 10.00 +44 23.00 3.00 7.00 0.00 955.00 10.00 +45 11.00 14.00 18.00 233.00 340.00 10.00 +46 6.00 38.00 16.00 0.00 960.00 10.00 +47 2.00 48.00 1.00 0.00 954.00 10.00 +48 8.00 56.00 27.00 0.00 955.00 10.00 +49 13.00 52.00 36.00 0.00 962.00 10.00 +50 6.00 68.00 30.00 0.00 946.00 10.00 +51 47.00 47.00 13.00 0.00 973.00 10.00 +52 49.00 58.00 10.00 0.00 963.00 10.00 +53 27.00 43.00 9.00 0.00 978.00 10.00 +54 37.00 31.00 14.00 414.00 489.00 10.00 +55 57.00 29.00 18.00 0.00 967.00 10.00 +56 63.00 23.00 2.00 620.00 739.00 10.00 +57 53.00 12.00 6.00 0.00 960.00 10.00 +58 32.00 12.00 7.00 0.00 966.00 10.00 +59 36.00 26.00 18.00 849.00 980.00 10.00 +60 21.00 24.00 28.00 0.00 972.00 10.00 +61 17.00 34.00 3.00 0.00 971.00 10.00 +62 12.00 24.00 13.00 0.00 964.00 10.00 +63 24.00 58.00 19.00 163.00 302.00 10.00 +64 27.00 69.00 10.00 0.00 955.00 10.00 +65 15.00 77.00 9.00 0.00 943.00 10.00 +66 62.00 77.00 20.00 0.00 940.00 10.00 +67 49.00 73.00 25.00 0.00 949.00 10.00 +68 67.00 5.00 25.00 294.00 401.00 10.00 +69 56.00 39.00 36.00 0.00 968.00 10.00 +70 37.00 47.00 6.00 162.00 293.00 10.00 +71 37.00 56.00 5.00 0.00 968.00 10.00 +72 57.00 68.00 15.00 0.00 950.00 10.00 +73 47.00 16.00 25.00 0.00 967.00 10.00 +74 44.00 17.00 9.00 0.00 969.00 10.00 +75 46.00 13.00 8.00 681.00 802.00 10.00 +76 49.00 11.00 18.00 0.00 962.00 10.00 +77 49.00 42.00 13.00 290.00 373.00 10.00 +78 53.00 43.00 14.00 817.00 952.00 10.00 +79 61.00 52.00 3.00 0.00 958.00 10.00 +80 57.00 48.00 23.00 388.00 465.00 10.00 +81 56.00 37.00 6.00 0.00 968.00 10.00 +82 55.00 54.00 26.00 0.00 962.00 10.00 +83 15.00 47.00 16.00 0.00 966.00 10.00 +84 14.00 37.00 11.00 0.00 968.00 10.00 +85 11.00 31.00 7.00 436.00 511.00 10.00 +86 16.00 22.00 41.00 0.00 966.00 10.00 +87 4.00 18.00 35.00 0.00 954.00 10.00 +88 28.00 18.00 26.00 420.00 447.00 10.00 +89 26.00 52.00 9.00 0.00 970.00 10.00 +90 26.00 35.00 15.00 0.00 981.00 10.00 +91 31.00 67.00 3.00 0.00 957.00 10.00 +92 15.00 19.00 1.00 0.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 181.00 10.00 +94 18.00 24.00 22.00 0.00 969.00 10.00 +95 26.00 27.00 27.00 0.00 977.00 10.00 +96 25.00 24.00 20.00 0.00 975.00 10.00 +97 22.00 27.00 11.00 0.00 974.00 10.00 +98 25.00 21.00 12.00 0.00 972.00 10.00 +99 19.00 21.00 10.00 0.00 968.00 10.00 +100 20.00 26.00 9.00 333.00 432.00 10.00 +101 18.00 18.00 17.00 798.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r205.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r205.dat new file mode 100644 index 000000000..e1a728f30 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r205.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 658.00 898.00 10.00 +3 35.00 17.00 7.00 93.00 333.00 10.00 +4 55.00 45.00 13.00 436.00 676.00 10.00 +5 55.00 20.00 19.00 620.00 860.00 10.00 +6 15.00 30.00 26.00 20.00 260.00 10.00 +7 25.00 30.00 3.00 345.00 585.00 10.00 +8 20.00 50.00 5.00 251.00 491.00 10.00 +9 10.00 43.00 9.00 323.00 563.00 10.00 +10 55.00 60.00 16.00 329.00 569.00 10.00 +11 30.00 60.00 16.00 485.00 725.00 10.00 +12 20.00 65.00 12.00 146.00 386.00 10.00 +13 50.00 35.00 19.00 167.00 407.00 10.00 +14 30.00 25.00 23.00 639.00 879.00 10.00 +15 15.00 10.00 20.00 32.00 272.00 10.00 +16 30.00 5.00 8.00 118.00 358.00 10.00 +17 10.00 20.00 19.00 203.00 443.00 10.00 +18 5.00 30.00 2.00 682.00 922.00 10.00 +19 20.00 40.00 12.00 286.00 526.00 10.00 +20 15.00 60.00 17.00 204.00 444.00 10.00 +21 45.00 65.00 9.00 504.00 744.00 10.00 +22 45.00 20.00 11.00 153.00 393.00 10.00 +23 45.00 10.00 18.00 332.00 572.00 10.00 +24 55.00 5.00 29.00 146.00 386.00 10.00 +25 65.00 35.00 3.00 656.00 896.00 10.00 +26 65.00 20.00 6.00 716.00 956.00 10.00 +27 45.00 30.00 17.00 508.00 748.00 10.00 +28 35.00 40.00 16.00 60.00 300.00 10.00 +29 41.00 37.00 16.00 65.00 305.00 10.00 +30 64.00 42.00 9.00 132.00 372.00 10.00 +31 40.00 60.00 21.00 187.00 427.00 10.00 +32 31.00 52.00 27.00 94.00 334.00 10.00 +33 35.00 69.00 23.00 599.00 839.00 10.00 +34 53.00 52.00 11.00 24.00 264.00 10.00 +35 65.00 55.00 14.00 452.00 692.00 10.00 +36 63.00 65.00 8.00 630.00 870.00 10.00 +37 2.00 60.00 5.00 41.00 281.00 10.00 +38 20.00 20.00 8.00 530.00 770.00 10.00 +39 5.00 5.00 16.00 234.00 474.00 10.00 +40 60.00 12.00 31.00 33.00 273.00 10.00 +41 40.00 25.00 9.00 279.00 519.00 10.00 +42 42.00 7.00 5.00 334.00 574.00 10.00 +43 24.00 12.00 5.00 25.00 265.00 10.00 +44 23.00 3.00 7.00 543.00 783.00 10.00 +45 11.00 14.00 18.00 167.00 407.00 10.00 +46 6.00 38.00 16.00 29.00 269.00 10.00 +47 2.00 48.00 1.00 452.00 692.00 10.00 +48 8.00 56.00 27.00 48.00 288.00 10.00 +49 13.00 52.00 36.00 720.00 960.00 10.00 +50 6.00 68.00 30.00 401.00 641.00 10.00 +51 47.00 47.00 13.00 475.00 715.00 10.00 +52 49.00 58.00 10.00 281.00 521.00 10.00 +53 27.00 43.00 9.00 117.00 357.00 10.00 +54 37.00 31.00 14.00 332.00 572.00 10.00 +55 57.00 29.00 18.00 568.00 808.00 10.00 +56 63.00 23.00 2.00 560.00 800.00 10.00 +57 53.00 12.00 6.00 519.00 759.00 10.00 +58 32.00 12.00 7.00 356.00 596.00 10.00 +59 36.00 26.00 18.00 740.00 980.00 10.00 +60 21.00 24.00 28.00 17.00 257.00 10.00 +61 17.00 34.00 3.00 672.00 912.00 10.00 +62 12.00 24.00 13.00 214.00 454.00 10.00 +63 24.00 58.00 19.00 113.00 353.00 10.00 +64 27.00 69.00 10.00 34.00 274.00 10.00 +65 15.00 77.00 9.00 154.00 394.00 10.00 +66 62.00 77.00 20.00 49.00 289.00 10.00 +67 49.00 73.00 25.00 523.00 763.00 10.00 +68 67.00 5.00 25.00 228.00 468.00 10.00 +69 56.00 39.00 36.00 575.00 815.00 10.00 +70 37.00 47.00 6.00 108.00 348.00 10.00 +71 37.00 56.00 5.00 728.00 968.00 10.00 +72 57.00 68.00 15.00 198.00 438.00 10.00 +73 47.00 16.00 25.00 22.00 262.00 10.00 +74 44.00 17.00 9.00 234.00 474.00 10.00 +75 46.00 13.00 8.00 622.00 862.00 10.00 +76 49.00 11.00 18.00 171.00 411.00 10.00 +77 49.00 42.00 13.00 212.00 452.00 10.00 +78 53.00 43.00 14.00 730.00 970.00 10.00 +79 61.00 52.00 3.00 322.00 562.00 10.00 +80 57.00 48.00 23.00 307.00 547.00 10.00 +81 56.00 37.00 6.00 728.00 968.00 10.00 +82 55.00 54.00 26.00 314.00 554.00 10.00 +83 15.00 47.00 16.00 106.00 346.00 10.00 +84 14.00 37.00 11.00 53.00 293.00 10.00 +85 11.00 31.00 7.00 354.00 594.00 10.00 +86 16.00 22.00 41.00 299.00 539.00 10.00 +87 4.00 18.00 35.00 307.00 547.00 10.00 +88 28.00 18.00 26.00 314.00 554.00 10.00 +89 26.00 52.00 9.00 214.00 454.00 10.00 +90 26.00 35.00 15.00 718.00 958.00 10.00 +91 31.00 67.00 3.00 320.00 560.00 10.00 +92 15.00 19.00 1.00 683.00 923.00 10.00 +93 22.00 22.00 2.00 18.00 258.00 10.00 +94 18.00 24.00 22.00 729.00 969.00 10.00 +95 26.00 27.00 27.00 350.00 590.00 10.00 +96 25.00 24.00 20.00 42.00 282.00 10.00 +97 22.00 27.00 11.00 529.00 769.00 10.00 +98 25.00 21.00 12.00 523.00 763.00 10.00 +99 19.00 21.00 10.00 125.00 365.00 10.00 +100 20.00 26.00 9.00 263.00 503.00 10.00 +101 18.00 18.00 17.00 725.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r206.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r206.dat new file mode 100644 index 000000000..3461fe76e --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r206.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 0.00 974.00 10.00 +3 35.00 17.00 7.00 0.00 972.00 10.00 +4 55.00 45.00 13.00 0.00 967.00 10.00 +5 55.00 20.00 19.00 620.00 860.00 10.00 +6 15.00 30.00 26.00 0.00 969.00 10.00 +7 25.00 30.00 3.00 345.00 585.00 10.00 +8 20.00 50.00 5.00 0.00 968.00 10.00 +9 10.00 43.00 9.00 323.00 563.00 10.00 +10 55.00 60.00 16.00 329.00 569.00 10.00 +11 30.00 60.00 16.00 485.00 725.00 10.00 +12 20.00 65.00 12.00 146.00 386.00 10.00 +13 50.00 35.00 19.00 0.00 975.00 10.00 +14 30.00 25.00 23.00 639.00 879.00 10.00 +15 15.00 10.00 20.00 32.00 272.00 10.00 +16 30.00 5.00 8.00 118.00 358.00 10.00 +17 10.00 20.00 19.00 203.00 443.00 10.00 +18 5.00 30.00 2.00 682.00 922.00 10.00 +19 20.00 40.00 12.00 286.00 526.00 10.00 +20 15.00 60.00 17.00 204.00 444.00 10.00 +21 45.00 65.00 9.00 504.00 744.00 10.00 +22 45.00 20.00 11.00 0.00 971.00 10.00 +23 45.00 10.00 18.00 332.00 572.00 10.00 +24 55.00 5.00 29.00 146.00 386.00 10.00 +25 65.00 35.00 3.00 656.00 896.00 10.00 +26 65.00 20.00 6.00 716.00 956.00 10.00 +27 45.00 30.00 17.00 0.00 978.00 10.00 +28 35.00 40.00 16.00 60.00 300.00 10.00 +29 41.00 37.00 16.00 65.00 305.00 10.00 +30 64.00 42.00 9.00 132.00 372.00 10.00 +31 40.00 60.00 21.00 187.00 427.00 10.00 +32 31.00 52.00 27.00 0.00 972.00 10.00 +33 35.00 69.00 23.00 599.00 839.00 10.00 +34 53.00 52.00 11.00 24.00 264.00 10.00 +35 65.00 55.00 14.00 0.00 953.00 10.00 +36 63.00 65.00 8.00 630.00 870.00 10.00 +37 2.00 60.00 5.00 41.00 281.00 10.00 +38 20.00 20.00 8.00 0.00 968.00 10.00 +39 5.00 5.00 16.00 234.00 474.00 10.00 +40 60.00 12.00 31.00 33.00 273.00 10.00 +41 40.00 25.00 9.00 279.00 519.00 10.00 +42 42.00 7.00 5.00 334.00 574.00 10.00 +43 24.00 12.00 5.00 25.00 265.00 10.00 +44 23.00 3.00 7.00 543.00 783.00 10.00 +45 11.00 14.00 18.00 167.00 407.00 10.00 +46 6.00 38.00 16.00 29.00 269.00 10.00 +47 2.00 48.00 1.00 452.00 692.00 10.00 +48 8.00 56.00 27.00 48.00 288.00 10.00 +49 13.00 52.00 36.00 0.00 962.00 10.00 +50 6.00 68.00 30.00 401.00 641.00 10.00 +51 47.00 47.00 13.00 0.00 973.00 10.00 +52 49.00 58.00 10.00 281.00 521.00 10.00 +53 27.00 43.00 9.00 0.00 978.00 10.00 +54 37.00 31.00 14.00 332.00 572.00 10.00 +55 57.00 29.00 18.00 568.00 808.00 10.00 +56 63.00 23.00 2.00 560.00 800.00 10.00 +57 53.00 12.00 6.00 519.00 759.00 10.00 +58 32.00 12.00 7.00 356.00 596.00 10.00 +59 36.00 26.00 18.00 740.00 980.00 10.00 +60 21.00 24.00 28.00 0.00 972.00 10.00 +61 17.00 34.00 3.00 672.00 912.00 10.00 +62 12.00 24.00 13.00 214.00 454.00 10.00 +63 24.00 58.00 19.00 113.00 353.00 10.00 +64 27.00 69.00 10.00 34.00 274.00 10.00 +65 15.00 77.00 9.00 154.00 394.00 10.00 +66 62.00 77.00 20.00 49.00 289.00 10.00 +67 49.00 73.00 25.00 523.00 763.00 10.00 +68 67.00 5.00 25.00 228.00 468.00 10.00 +69 56.00 39.00 36.00 575.00 815.00 10.00 +70 37.00 47.00 6.00 108.00 348.00 10.00 +71 37.00 56.00 5.00 728.00 968.00 10.00 +72 57.00 68.00 15.00 198.00 438.00 10.00 +73 47.00 16.00 25.00 0.00 967.00 10.00 +74 44.00 17.00 9.00 234.00 474.00 10.00 +75 46.00 13.00 8.00 622.00 862.00 10.00 +76 49.00 11.00 18.00 0.00 962.00 10.00 +77 49.00 42.00 13.00 212.00 452.00 10.00 +78 53.00 43.00 14.00 730.00 970.00 10.00 +79 61.00 52.00 3.00 322.00 562.00 10.00 +80 57.00 48.00 23.00 307.00 547.00 10.00 +81 56.00 37.00 6.00 728.00 968.00 10.00 +82 55.00 54.00 26.00 314.00 554.00 10.00 +83 15.00 47.00 16.00 0.00 966.00 10.00 +84 14.00 37.00 11.00 0.00 968.00 10.00 +85 11.00 31.00 7.00 354.00 594.00 10.00 +86 16.00 22.00 41.00 0.00 966.00 10.00 +87 4.00 18.00 35.00 307.00 547.00 10.00 +88 28.00 18.00 26.00 314.00 554.00 10.00 +89 26.00 52.00 9.00 214.00 454.00 10.00 +90 26.00 35.00 15.00 718.00 958.00 10.00 +91 31.00 67.00 3.00 320.00 560.00 10.00 +92 15.00 19.00 1.00 0.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 258.00 10.00 +94 18.00 24.00 22.00 729.00 969.00 10.00 +95 26.00 27.00 27.00 0.00 977.00 10.00 +96 25.00 24.00 20.00 0.00 975.00 10.00 +97 22.00 27.00 11.00 0.00 974.00 10.00 +98 25.00 21.00 12.00 523.00 763.00 10.00 +99 19.00 21.00 10.00 0.00 968.00 10.00 +100 20.00 26.00 9.00 263.00 503.00 10.00 +101 18.00 18.00 17.00 725.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r207.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r207.dat new file mode 100644 index 000000000..4c67d3ab5 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r207.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 0.00 974.00 10.00 +3 35.00 17.00 7.00 0.00 972.00 10.00 +4 55.00 45.00 13.00 0.00 967.00 10.00 +5 55.00 20.00 19.00 620.00 860.00 10.00 +6 15.00 30.00 26.00 0.00 969.00 10.00 +7 25.00 30.00 3.00 345.00 585.00 10.00 +8 20.00 50.00 5.00 0.00 968.00 10.00 +9 10.00 43.00 9.00 323.00 563.00 10.00 +10 55.00 60.00 16.00 329.00 569.00 10.00 +11 30.00 60.00 16.00 485.00 725.00 10.00 +12 20.00 65.00 12.00 146.00 386.00 10.00 +13 50.00 35.00 19.00 0.00 975.00 10.00 +14 30.00 25.00 23.00 639.00 879.00 10.00 +15 15.00 10.00 20.00 0.00 957.00 10.00 +16 30.00 5.00 8.00 118.00 358.00 10.00 +17 10.00 20.00 19.00 0.00 960.00 10.00 +18 5.00 30.00 2.00 682.00 922.00 10.00 +19 20.00 40.00 12.00 0.00 974.00 10.00 +20 15.00 60.00 17.00 0.00 957.00 10.00 +21 45.00 65.00 9.00 0.00 958.00 10.00 +22 45.00 20.00 11.00 0.00 971.00 10.00 +23 45.00 10.00 18.00 332.00 572.00 10.00 +24 55.00 5.00 29.00 146.00 386.00 10.00 +25 65.00 35.00 3.00 0.00 960.00 10.00 +26 65.00 20.00 6.00 716.00 956.00 10.00 +27 45.00 30.00 17.00 0.00 978.00 10.00 +28 35.00 40.00 16.00 60.00 300.00 10.00 +29 41.00 37.00 16.00 0.00 983.00 10.00 +30 64.00 42.00 9.00 0.00 960.00 10.00 +31 40.00 60.00 21.00 187.00 427.00 10.00 +32 31.00 52.00 27.00 0.00 972.00 10.00 +33 35.00 69.00 23.00 0.00 956.00 10.00 +34 53.00 52.00 11.00 24.00 264.00 10.00 +35 65.00 55.00 14.00 0.00 953.00 10.00 +36 63.00 65.00 8.00 630.00 870.00 10.00 +37 2.00 60.00 5.00 41.00 281.00 10.00 +38 20.00 20.00 8.00 0.00 968.00 10.00 +39 5.00 5.00 16.00 234.00 474.00 10.00 +40 60.00 12.00 31.00 33.00 273.00 10.00 +41 40.00 25.00 9.00 279.00 519.00 10.00 +42 42.00 7.00 5.00 334.00 574.00 10.00 +43 24.00 12.00 5.00 25.00 265.00 10.00 +44 23.00 3.00 7.00 0.00 955.00 10.00 +45 11.00 14.00 18.00 167.00 407.00 10.00 +46 6.00 38.00 16.00 29.00 269.00 10.00 +47 2.00 48.00 1.00 0.00 954.00 10.00 +48 8.00 56.00 27.00 0.00 955.00 10.00 +49 13.00 52.00 36.00 0.00 962.00 10.00 +50 6.00 68.00 30.00 401.00 641.00 10.00 +51 47.00 47.00 13.00 0.00 973.00 10.00 +52 49.00 58.00 10.00 0.00 963.00 10.00 +53 27.00 43.00 9.00 0.00 978.00 10.00 +54 37.00 31.00 14.00 332.00 572.00 10.00 +55 57.00 29.00 18.00 0.00 967.00 10.00 +56 63.00 23.00 2.00 560.00 800.00 10.00 +57 53.00 12.00 6.00 519.00 759.00 10.00 +58 32.00 12.00 7.00 0.00 966.00 10.00 +59 36.00 26.00 18.00 740.00 980.00 10.00 +60 21.00 24.00 28.00 0.00 972.00 10.00 +61 17.00 34.00 3.00 0.00 971.00 10.00 +62 12.00 24.00 13.00 0.00 964.00 10.00 +63 24.00 58.00 19.00 113.00 353.00 10.00 +64 27.00 69.00 10.00 0.00 955.00 10.00 +65 15.00 77.00 9.00 154.00 394.00 10.00 +66 62.00 77.00 20.00 49.00 289.00 10.00 +67 49.00 73.00 25.00 523.00 763.00 10.00 +68 67.00 5.00 25.00 228.00 468.00 10.00 +69 56.00 39.00 36.00 575.00 815.00 10.00 +70 37.00 47.00 6.00 108.00 348.00 10.00 +71 37.00 56.00 5.00 728.00 968.00 10.00 +72 57.00 68.00 15.00 0.00 950.00 10.00 +73 47.00 16.00 25.00 0.00 967.00 10.00 +74 44.00 17.00 9.00 0.00 969.00 10.00 +75 46.00 13.00 8.00 622.00 862.00 10.00 +76 49.00 11.00 18.00 0.00 962.00 10.00 +77 49.00 42.00 13.00 212.00 452.00 10.00 +78 53.00 43.00 14.00 730.00 970.00 10.00 +79 61.00 52.00 3.00 322.00 562.00 10.00 +80 57.00 48.00 23.00 307.00 547.00 10.00 +81 56.00 37.00 6.00 728.00 968.00 10.00 +82 55.00 54.00 26.00 0.00 962.00 10.00 +83 15.00 47.00 16.00 0.00 966.00 10.00 +84 14.00 37.00 11.00 0.00 968.00 10.00 +85 11.00 31.00 7.00 354.00 594.00 10.00 +86 16.00 22.00 41.00 0.00 966.00 10.00 +87 4.00 18.00 35.00 0.00 954.00 10.00 +88 28.00 18.00 26.00 314.00 554.00 10.00 +89 26.00 52.00 9.00 214.00 454.00 10.00 +90 26.00 35.00 15.00 0.00 981.00 10.00 +91 31.00 67.00 3.00 0.00 957.00 10.00 +92 15.00 19.00 1.00 0.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 258.00 10.00 +94 18.00 24.00 22.00 729.00 969.00 10.00 +95 26.00 27.00 27.00 0.00 977.00 10.00 +96 25.00 24.00 20.00 0.00 975.00 10.00 +97 22.00 27.00 11.00 0.00 974.00 10.00 +98 25.00 21.00 12.00 0.00 972.00 10.00 +99 19.00 21.00 10.00 0.00 968.00 10.00 +100 20.00 26.00 9.00 263.00 503.00 10.00 +101 18.00 18.00 17.00 725.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r208.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r208.dat new file mode 100644 index 000000000..d20ac2e92 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r208.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 0.00 974.00 10.00 +3 35.00 17.00 7.00 0.00 972.00 10.00 +4 55.00 45.00 13.00 0.00 967.00 10.00 +5 55.00 20.00 19.00 620.00 860.00 10.00 +6 15.00 30.00 26.00 0.00 969.00 10.00 +7 25.00 30.00 3.00 0.00 978.00 10.00 +8 20.00 50.00 5.00 0.00 968.00 10.00 +9 10.00 43.00 9.00 323.00 563.00 10.00 +10 55.00 60.00 16.00 329.00 569.00 10.00 +11 30.00 60.00 16.00 0.00 964.00 10.00 +12 20.00 65.00 12.00 146.00 386.00 10.00 +13 50.00 35.00 19.00 0.00 975.00 10.00 +14 30.00 25.00 23.00 639.00 879.00 10.00 +15 15.00 10.00 20.00 0.00 957.00 10.00 +16 30.00 5.00 8.00 118.00 358.00 10.00 +17 10.00 20.00 19.00 0.00 960.00 10.00 +18 5.00 30.00 2.00 0.00 959.00 10.00 +19 20.00 40.00 12.00 0.00 974.00 10.00 +20 15.00 60.00 17.00 0.00 957.00 10.00 +21 45.00 65.00 9.00 0.00 958.00 10.00 +22 45.00 20.00 11.00 0.00 971.00 10.00 +23 45.00 10.00 18.00 0.00 963.00 10.00 +24 55.00 5.00 29.00 146.00 386.00 10.00 +25 65.00 35.00 3.00 0.00 960.00 10.00 +26 65.00 20.00 6.00 716.00 956.00 10.00 +27 45.00 30.00 17.00 0.00 978.00 10.00 +28 35.00 40.00 16.00 0.00 985.00 10.00 +29 41.00 37.00 16.00 0.00 983.00 10.00 +30 64.00 42.00 9.00 0.00 960.00 10.00 +31 40.00 60.00 21.00 0.00 964.00 10.00 +32 31.00 52.00 27.00 0.00 972.00 10.00 +33 35.00 69.00 23.00 0.00 956.00 10.00 +34 53.00 52.00 11.00 0.00 965.00 10.00 +35 65.00 55.00 14.00 0.00 953.00 10.00 +36 63.00 65.00 8.00 0.00 948.00 10.00 +37 2.00 60.00 5.00 0.00 948.00 10.00 +38 20.00 20.00 8.00 0.00 968.00 10.00 +39 5.00 5.00 16.00 234.00 474.00 10.00 +40 60.00 12.00 31.00 0.00 956.00 10.00 +41 40.00 25.00 9.00 0.00 978.00 10.00 +42 42.00 7.00 5.00 0.00 961.00 10.00 +43 24.00 12.00 5.00 0.00 964.00 10.00 +44 23.00 3.00 7.00 0.00 955.00 10.00 +45 11.00 14.00 18.00 167.00 407.00 10.00 +46 6.00 38.00 16.00 0.00 960.00 10.00 +47 2.00 48.00 1.00 0.00 954.00 10.00 +48 8.00 56.00 27.00 0.00 955.00 10.00 +49 13.00 52.00 36.00 0.00 962.00 10.00 +50 6.00 68.00 30.00 0.00 946.00 10.00 +51 47.00 47.00 13.00 0.00 973.00 10.00 +52 49.00 58.00 10.00 0.00 963.00 10.00 +53 27.00 43.00 9.00 0.00 978.00 10.00 +54 37.00 31.00 14.00 332.00 572.00 10.00 +55 57.00 29.00 18.00 0.00 967.00 10.00 +56 63.00 23.00 2.00 560.00 800.00 10.00 +57 53.00 12.00 6.00 0.00 960.00 10.00 +58 32.00 12.00 7.00 0.00 966.00 10.00 +59 36.00 26.00 18.00 740.00 980.00 10.00 +60 21.00 24.00 28.00 0.00 972.00 10.00 +61 17.00 34.00 3.00 0.00 971.00 10.00 +62 12.00 24.00 13.00 0.00 964.00 10.00 +63 24.00 58.00 19.00 113.00 353.00 10.00 +64 27.00 69.00 10.00 0.00 955.00 10.00 +65 15.00 77.00 9.00 0.00 943.00 10.00 +66 62.00 77.00 20.00 0.00 940.00 10.00 +67 49.00 73.00 25.00 0.00 949.00 10.00 +68 67.00 5.00 25.00 228.00 468.00 10.00 +69 56.00 39.00 36.00 0.00 968.00 10.00 +70 37.00 47.00 6.00 108.00 348.00 10.00 +71 37.00 56.00 5.00 0.00 968.00 10.00 +72 57.00 68.00 15.00 0.00 950.00 10.00 +73 47.00 16.00 25.00 0.00 967.00 10.00 +74 44.00 17.00 9.00 0.00 969.00 10.00 +75 46.00 13.00 8.00 622.00 862.00 10.00 +76 49.00 11.00 18.00 0.00 962.00 10.00 +77 49.00 42.00 13.00 212.00 452.00 10.00 +78 53.00 43.00 14.00 730.00 970.00 10.00 +79 61.00 52.00 3.00 0.00 958.00 10.00 +80 57.00 48.00 23.00 307.00 547.00 10.00 +81 56.00 37.00 6.00 0.00 968.00 10.00 +82 55.00 54.00 26.00 0.00 962.00 10.00 +83 15.00 47.00 16.00 0.00 966.00 10.00 +84 14.00 37.00 11.00 0.00 968.00 10.00 +85 11.00 31.00 7.00 354.00 594.00 10.00 +86 16.00 22.00 41.00 0.00 966.00 10.00 +87 4.00 18.00 35.00 0.00 954.00 10.00 +88 28.00 18.00 26.00 314.00 554.00 10.00 +89 26.00 52.00 9.00 0.00 970.00 10.00 +90 26.00 35.00 15.00 0.00 981.00 10.00 +91 31.00 67.00 3.00 0.00 957.00 10.00 +92 15.00 19.00 1.00 0.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 258.00 10.00 +94 18.00 24.00 22.00 0.00 969.00 10.00 +95 26.00 27.00 27.00 0.00 977.00 10.00 +96 25.00 24.00 20.00 0.00 975.00 10.00 +97 22.00 27.00 11.00 0.00 974.00 10.00 +98 25.00 21.00 12.00 0.00 972.00 10.00 +99 19.00 21.00 10.00 0.00 968.00 10.00 +100 20.00 26.00 9.00 263.00 503.00 10.00 +101 18.00 18.00 17.00 725.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r209.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r209.dat new file mode 100644 index 000000000..cb5293861 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r209.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 636.00 919.00 10.00 +3 35.00 17.00 7.00 74.00 351.00 10.00 +4 55.00 45.00 13.00 498.00 613.00 10.00 +5 55.00 20.00 19.00 470.00 965.00 10.00 +6 15.00 30.00 26.00 20.00 370.00 10.00 +7 25.00 30.00 3.00 266.00 663.00 10.00 +8 20.00 50.00 5.00 292.00 449.00 10.00 +9 10.00 43.00 9.00 288.00 597.00 10.00 +10 55.00 60.00 16.00 254.00 643.00 10.00 +11 30.00 60.00 16.00 496.00 713.00 10.00 +12 20.00 65.00 12.00 33.00 510.00 10.00 +13 50.00 35.00 19.00 170.00 403.00 10.00 +14 30.00 25.00 23.00 426.00 978.00 10.00 +15 15.00 10.00 20.00 32.00 454.00 10.00 +16 30.00 5.00 8.00 30.00 529.00 10.00 +17 10.00 20.00 19.00 222.00 423.00 10.00 +18 5.00 30.00 2.00 409.00 959.00 10.00 +19 20.00 40.00 12.00 349.00 462.00 10.00 +20 15.00 60.00 17.00 215.00 432.00 10.00 +21 45.00 65.00 9.00 538.00 709.00 10.00 +22 45.00 20.00 11.00 156.00 389.00 10.00 +23 45.00 10.00 18.00 280.00 623.00 10.00 +24 55.00 5.00 29.00 36.00 513.00 10.00 +25 65.00 35.00 3.00 633.00 918.00 10.00 +26 65.00 20.00 6.00 400.00 956.00 10.00 +27 45.00 30.00 17.00 548.00 707.00 10.00 +28 35.00 40.00 16.00 5.00 612.00 10.00 +29 41.00 37.00 16.00 44.00 325.00 10.00 +30 64.00 42.00 9.00 129.00 374.00 10.00 +31 40.00 60.00 21.00 115.00 498.00 10.00 +32 31.00 52.00 27.00 91.00 336.00 10.00 +33 35.00 69.00 23.00 602.00 835.00 10.00 +34 53.00 52.00 11.00 24.00 646.00 10.00 +35 65.00 55.00 14.00 487.00 656.00 10.00 +36 63.00 65.00 8.00 439.00 948.00 10.00 +37 2.00 60.00 5.00 41.00 710.00 10.00 +38 20.00 20.00 8.00 563.00 736.00 10.00 +39 5.00 5.00 16.00 147.00 560.00 10.00 +40 60.00 12.00 31.00 33.00 797.00 10.00 +41 40.00 25.00 9.00 243.00 554.00 10.00 +42 42.00 7.00 5.00 225.00 682.00 10.00 +43 24.00 12.00 5.00 25.00 616.00 10.00 +44 23.00 3.00 7.00 578.00 747.00 10.00 +45 11.00 14.00 18.00 72.00 501.00 10.00 +46 6.00 38.00 16.00 29.00 669.00 10.00 +47 2.00 48.00 1.00 458.00 685.00 10.00 +48 8.00 56.00 27.00 34.00 362.00 10.00 +49 13.00 52.00 36.00 694.00 962.00 10.00 +50 6.00 68.00 30.00 444.00 597.00 10.00 +51 47.00 47.00 13.00 499.00 690.00 10.00 +52 49.00 58.00 10.00 296.00 505.00 10.00 +53 27.00 43.00 9.00 111.00 362.00 10.00 +54 37.00 31.00 14.00 301.00 602.00 10.00 +55 57.00 29.00 18.00 595.00 780.00 10.00 +56 63.00 23.00 2.00 442.00 917.00 10.00 +57 53.00 12.00 6.00 426.00 851.00 10.00 +58 32.00 12.00 7.00 366.00 585.00 10.00 +59 36.00 26.00 18.00 458.00 980.00 10.00 +60 21.00 24.00 28.00 17.00 441.00 10.00 +61 17.00 34.00 3.00 651.00 932.00 10.00 +62 12.00 24.00 13.00 246.00 421.00 10.00 +63 24.00 58.00 19.00 25.00 583.00 10.00 +64 27.00 69.00 10.00 34.00 348.00 10.00 +65 15.00 77.00 9.00 46.00 523.00 10.00 +66 62.00 77.00 20.00 49.00 608.00 10.00 +67 49.00 73.00 25.00 440.00 845.00 10.00 +68 67.00 5.00 25.00 132.00 563.00 10.00 +69 56.00 39.00 36.00 464.00 925.00 10.00 +70 37.00 47.00 6.00 12.00 535.00 10.00 +71 37.00 56.00 5.00 249.00 968.00 10.00 +72 57.00 68.00 15.00 218.00 417.00 10.00 +73 47.00 16.00 25.00 22.00 377.00 10.00 +74 44.00 17.00 9.00 263.00 444.00 10.00 +75 46.00 13.00 8.00 479.00 965.00 10.00 +76 49.00 11.00 18.00 182.00 399.00 10.00 +77 49.00 42.00 13.00 166.00 497.00 10.00 +78 53.00 43.00 14.00 430.00 970.00 10.00 +79 61.00 52.00 3.00 212.00 671.00 10.00 +80 57.00 48.00 23.00 273.00 580.00 10.00 +81 56.00 37.00 6.00 452.00 968.00 10.00 +82 55.00 54.00 26.00 388.00 479.00 10.00 +83 15.00 47.00 16.00 99.00 352.00 10.00 +84 14.00 37.00 11.00 21.00 328.00 10.00 +85 11.00 31.00 7.00 323.00 624.00 10.00 +86 16.00 22.00 41.00 333.00 504.00 10.00 +87 4.00 18.00 35.00 350.00 503.00 10.00 +88 28.00 18.00 26.00 380.00 487.00 10.00 +89 26.00 52.00 9.00 114.00 553.00 10.00 +90 26.00 35.00 15.00 649.00 981.00 10.00 +91 31.00 67.00 3.00 345.00 534.00 10.00 +92 15.00 19.00 1.00 675.00 930.00 10.00 +93 22.00 22.00 2.00 18.00 673.00 10.00 +94 18.00 24.00 22.00 339.00 969.00 10.00 +95 26.00 27.00 27.00 403.00 536.00 10.00 +96 25.00 24.00 20.00 22.00 301.00 10.00 +97 22.00 27.00 11.00 565.00 732.00 10.00 +98 25.00 21.00 12.00 582.00 703.00 10.00 +99 19.00 21.00 10.00 122.00 367.00 10.00 +100 20.00 26.00 9.00 185.00 580.00 10.00 +101 18.00 18.00 17.00 297.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r210.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r210.dat new file mode 100644 index 000000000..f8084882f --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r210.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 190.00 974.00 10.00 +3 35.00 17.00 7.00 18.00 792.00 10.00 +4 55.00 45.00 13.00 289.00 822.00 10.00 +5 55.00 20.00 19.00 679.00 800.00 10.00 +6 15.00 30.00 26.00 20.00 906.00 10.00 +7 25.00 30.00 3.00 355.00 574.00 10.00 +8 20.00 50.00 5.00 72.00 669.00 10.00 +9 10.00 43.00 9.00 393.00 492.00 10.00 +10 55.00 60.00 16.00 394.00 503.00 10.00 +11 30.00 60.00 16.00 517.00 692.00 10.00 +12 20.00 65.00 12.00 206.00 325.00 10.00 +13 50.00 35.00 19.00 15.00 725.00 10.00 +14 30.00 25.00 23.00 694.00 823.00 10.00 +15 15.00 10.00 20.00 32.00 694.00 10.00 +16 30.00 5.00 8.00 176.00 299.00 10.00 +17 10.00 20.00 19.00 102.00 543.00 10.00 +18 5.00 30.00 2.00 673.00 930.00 10.00 +19 20.00 40.00 12.00 229.00 582.00 10.00 +20 15.00 60.00 17.00 95.00 552.00 10.00 +21 45.00 65.00 9.00 418.00 829.00 10.00 +22 45.00 20.00 11.00 18.00 727.00 10.00 +23 45.00 10.00 18.00 349.00 554.00 10.00 +24 55.00 5.00 29.00 206.00 325.00 10.00 +25 65.00 35.00 3.00 435.00 960.00 10.00 +26 65.00 20.00 6.00 826.00 956.00 10.00 +27 45.00 30.00 17.00 328.00 927.00 10.00 +28 35.00 40.00 16.00 44.00 315.00 10.00 +29 41.00 37.00 16.00 6.00 526.00 10.00 +30 64.00 42.00 9.00 29.00 513.00 10.00 +31 40.00 60.00 21.00 199.00 414.00 10.00 +32 31.00 52.00 27.00 17.00 744.00 10.00 +33 35.00 69.00 23.00 482.00 955.00 10.00 +34 53.00 52.00 11.00 24.00 299.00 10.00 +35 65.00 55.00 14.00 265.00 878.00 10.00 +36 63.00 65.00 8.00 626.00 873.00 10.00 +37 2.00 60.00 5.00 41.00 328.00 10.00 +38 20.00 20.00 8.00 339.00 960.00 10.00 +39 5.00 5.00 16.00 298.00 409.00 10.00 +40 60.00 12.00 31.00 33.00 344.00 10.00 +41 40.00 25.00 9.00 300.00 497.00 10.00 +42 42.00 7.00 5.00 336.00 571.00 10.00 +43 24.00 12.00 5.00 25.00 292.00 10.00 +44 23.00 3.00 7.00 458.00 867.00 10.00 +45 11.00 14.00 18.00 230.00 343.00 10.00 +46 6.00 38.00 16.00 29.00 309.00 10.00 +47 2.00 48.00 1.00 338.00 805.00 10.00 +48 8.00 56.00 27.00 34.00 602.00 10.00 +49 13.00 52.00 36.00 200.00 962.00 10.00 +50 6.00 68.00 30.00 441.00 600.00 10.00 +51 47.00 47.00 13.00 272.00 917.00 10.00 +52 49.00 58.00 10.00 176.00 625.00 10.00 +53 27.00 43.00 9.00 11.00 748.00 10.00 +54 37.00 31.00 14.00 403.00 500.00 10.00 +55 57.00 29.00 18.00 475.00 900.00 10.00 +56 63.00 23.00 2.00 620.00 739.00 10.00 +57 53.00 12.00 6.00 525.00 752.00 10.00 +58 32.00 12.00 7.00 246.00 705.00 10.00 +59 36.00 26.00 18.00 854.00 980.00 10.00 +60 21.00 24.00 28.00 17.00 972.00 10.00 +61 17.00 34.00 3.00 449.00 971.00 10.00 +62 12.00 24.00 13.00 126.00 541.00 10.00 +63 24.00 58.00 19.00 168.00 297.00 10.00 +64 27.00 69.00 10.00 34.00 588.00 10.00 +65 15.00 77.00 9.00 154.00 393.00 10.00 +66 62.00 77.00 20.00 49.00 308.00 10.00 +67 49.00 73.00 25.00 532.00 753.00 10.00 +68 67.00 5.00 25.00 291.00 404.00 10.00 +69 56.00 39.00 36.00 577.00 812.00 10.00 +70 37.00 47.00 6.00 165.00 290.00 10.00 +71 37.00 56.00 5.00 668.00 968.00 10.00 +72 57.00 68.00 15.00 98.00 537.00 10.00 +73 47.00 16.00 25.00 22.00 915.00 10.00 +74 44.00 17.00 9.00 143.00 564.00 10.00 +75 46.00 13.00 8.00 681.00 802.00 10.00 +76 49.00 11.00 18.00 27.00 711.00 10.00 +77 49.00 42.00 13.00 281.00 382.00 10.00 +78 53.00 43.00 14.00 821.00 948.00 10.00 +79 61.00 52.00 3.00 324.00 559.00 10.00 +80 57.00 48.00 23.00 377.00 476.00 10.00 +81 56.00 37.00 6.00 719.00 968.00 10.00 +82 55.00 54.00 26.00 268.00 599.00 10.00 +83 15.00 47.00 16.00 23.00 761.00 10.00 +84 14.00 37.00 11.00 21.00 842.00 10.00 +85 11.00 31.00 7.00 425.00 522.00 10.00 +86 16.00 22.00 41.00 110.00 727.00 10.00 +87 4.00 18.00 35.00 230.00 623.00 10.00 +88 28.00 18.00 26.00 397.00 470.00 10.00 +89 26.00 52.00 9.00 219.00 448.00 10.00 +90 26.00 35.00 15.00 409.00 981.00 10.00 +91 31.00 67.00 3.00 225.00 654.00 10.00 +92 15.00 19.00 1.00 222.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 159.00 10.00 +94 18.00 24.00 22.00 691.00 969.00 10.00 +95 26.00 27.00 27.00 190.00 749.00 10.00 +96 25.00 24.00 20.00 14.00 793.00 10.00 +97 22.00 27.00 11.00 344.00 953.00 10.00 +98 25.00 21.00 12.00 462.00 823.00 10.00 +99 19.00 21.00 10.00 21.00 748.00 10.00 +100 20.00 26.00 9.00 328.00 437.00 10.00 +101 18.00 18.00 17.00 821.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r211.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r211.dat new file mode 100644 index 000000000..eea26280e --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/r211.dat @@ -0,0 +1,101 @@ +1 35.00 35.00 0.00 0.00 1000.00 0.00 +2 41.00 49.00 10.00 451.00 974.00 10.00 +3 35.00 17.00 7.00 18.00 534.00 10.00 +4 55.00 45.00 13.00 378.00 733.00 10.00 +5 55.00 20.00 19.00 477.00 965.00 10.00 +6 15.00 30.00 26.00 20.00 610.00 10.00 +7 25.00 30.00 3.00 245.00 684.00 10.00 +8 20.00 50.00 5.00 172.00 569.00 10.00 +9 10.00 43.00 9.00 245.00 640.00 10.00 +10 55.00 60.00 16.00 231.00 666.00 10.00 +11 30.00 60.00 16.00 430.00 779.00 10.00 +12 20.00 65.00 12.00 33.00 511.00 10.00 +13 50.00 35.00 19.00 50.00 523.00 10.00 +14 30.00 25.00 23.00 462.00 978.00 10.00 +15 15.00 10.00 20.00 32.00 694.00 10.00 +16 30.00 5.00 8.00 30.00 519.00 10.00 +17 10.00 20.00 19.00 102.00 543.00 10.00 +18 5.00 30.00 2.00 444.00 959.00 10.00 +19 20.00 40.00 12.00 229.00 582.00 10.00 +20 15.00 60.00 17.00 95.00 552.00 10.00 +21 45.00 65.00 9.00 418.00 829.00 10.00 +22 45.00 20.00 11.00 36.00 509.00 10.00 +23 45.00 10.00 18.00 246.00 657.00 10.00 +24 55.00 5.00 29.00 36.00 514.00 10.00 +25 65.00 35.00 3.00 435.00 960.00 10.00 +26 65.00 20.00 6.00 438.00 956.00 10.00 +27 45.00 30.00 17.00 428.00 827.00 10.00 +28 35.00 40.00 16.00 5.00 548.00 10.00 +29 41.00 37.00 16.00 6.00 526.00 10.00 +30 64.00 42.00 9.00 29.00 513.00 10.00 +31 40.00 60.00 21.00 91.00 522.00 10.00 +32 31.00 52.00 27.00 17.00 501.00 10.00 +33 35.00 69.00 23.00 482.00 955.00 10.00 +34 53.00 52.00 11.00 24.00 575.00 10.00 +35 65.00 55.00 14.00 367.00 776.00 10.00 +36 63.00 65.00 8.00 453.00 948.00 10.00 +37 2.00 60.00 5.00 41.00 615.00 10.00 +38 20.00 20.00 8.00 443.00 856.00 10.00 +39 5.00 5.00 16.00 130.00 577.00 10.00 +40 60.00 12.00 31.00 33.00 655.00 10.00 +41 40.00 25.00 9.00 201.00 596.00 10.00 +42 42.00 7.00 5.00 219.00 688.00 10.00 +43 24.00 12.00 5.00 25.00 560.00 10.00 +44 23.00 3.00 7.00 458.00 867.00 10.00 +45 11.00 14.00 18.00 59.00 514.00 10.00 +46 6.00 38.00 16.00 29.00 589.00 10.00 +47 2.00 48.00 1.00 338.00 805.00 10.00 +48 8.00 56.00 27.00 34.00 602.00 10.00 +49 13.00 52.00 36.00 454.00 962.00 10.00 +50 6.00 68.00 30.00 362.00 679.00 10.00 +51 47.00 47.00 13.00 379.00 810.00 10.00 +52 49.00 58.00 10.00 176.00 625.00 10.00 +53 27.00 43.00 9.00 11.00 502.00 10.00 +54 37.00 31.00 14.00 256.00 647.00 10.00 +55 57.00 29.00 18.00 475.00 900.00 10.00 +56 63.00 23.00 2.00 441.00 918.00 10.00 +57 53.00 12.00 6.00 412.00 865.00 10.00 +58 32.00 12.00 7.00 246.00 705.00 10.00 +59 36.00 26.00 18.00 479.00 980.00 10.00 +60 21.00 24.00 28.00 17.00 681.00 10.00 +61 17.00 34.00 3.00 449.00 971.00 10.00 +62 12.00 24.00 13.00 126.00 541.00 10.00 +63 24.00 58.00 19.00 25.00 544.00 10.00 +64 27.00 69.00 10.00 34.00 588.00 10.00 +65 15.00 77.00 9.00 46.00 524.00 10.00 +66 62.00 77.00 20.00 49.00 568.00 10.00 +67 49.00 73.00 25.00 421.00 864.00 10.00 +68 67.00 5.00 25.00 120.00 575.00 10.00 +69 56.00 39.00 36.00 459.00 930.00 10.00 +70 37.00 47.00 6.00 12.00 513.00 10.00 +71 37.00 56.00 5.00 368.00 968.00 10.00 +72 57.00 68.00 15.00 98.00 537.00 10.00 +73 47.00 16.00 25.00 22.00 617.00 10.00 +74 44.00 17.00 9.00 143.00 564.00 10.00 +75 46.00 13.00 8.00 482.00 965.00 10.00 +76 49.00 11.00 18.00 62.00 519.00 10.00 +77 49.00 42.00 13.00 129.00 534.00 10.00 +78 53.00 43.00 14.00 460.00 970.00 10.00 +79 61.00 52.00 3.00 207.00 676.00 10.00 +80 57.00 48.00 23.00 230.00 623.00 10.00 +81 56.00 37.00 6.00 470.00 968.00 10.00 +82 55.00 54.00 26.00 268.00 599.00 10.00 +83 15.00 47.00 16.00 23.00 515.00 10.00 +84 14.00 37.00 11.00 21.00 568.00 10.00 +85 11.00 31.00 7.00 278.00 669.00 10.00 +86 16.00 22.00 41.00 213.00 624.00 10.00 +87 4.00 18.00 35.00 230.00 623.00 10.00 +88 28.00 18.00 26.00 287.00 580.00 10.00 +89 26.00 52.00 9.00 104.00 563.00 10.00 +90 26.00 35.00 15.00 409.00 981.00 10.00 +91 31.00 67.00 3.00 225.00 654.00 10.00 +92 15.00 19.00 1.00 469.00 964.00 10.00 +93 22.00 22.00 2.00 18.00 585.00 10.00 +94 18.00 24.00 22.00 414.00 969.00 10.00 +95 26.00 27.00 27.00 283.00 656.00 10.00 +96 25.00 24.00 20.00 14.00 533.00 10.00 +97 22.00 27.00 11.00 445.00 852.00 10.00 +98 25.00 21.00 12.00 462.00 823.00 10.00 +99 19.00 21.00 10.00 21.00 506.00 10.00 +100 20.00 26.00 9.00 164.00 601.00 10.00 +101 18.00 18.00 17.00 391.00 965.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc101.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc101.dat new file mode 100644 index 000000000..972235e15 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc101.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 145.00 175.00 10.00 +3 22.00 75.00 30.00 50.00 80.00 10.00 +4 22.00 85.00 10.00 109.00 139.00 10.00 +5 20.00 80.00 40.00 141.00 171.00 10.00 +6 20.00 85.00 20.00 41.00 71.00 10.00 +7 18.00 75.00 20.00 95.00 125.00 10.00 +8 15.00 75.00 20.00 79.00 109.00 10.00 +9 15.00 80.00 10.00 91.00 121.00 10.00 +10 10.00 35.00 20.00 91.00 121.00 10.00 +11 10.00 40.00 30.00 119.00 149.00 10.00 +12 8.00 40.00 40.00 59.00 89.00 10.00 +13 8.00 45.00 20.00 64.00 94.00 10.00 +14 5.00 35.00 10.00 142.00 172.00 10.00 +15 5.00 45.00 10.00 35.00 65.00 10.00 +16 2.00 40.00 20.00 58.00 88.00 10.00 +17 0.00 40.00 20.00 72.00 102.00 10.00 +18 0.00 45.00 20.00 149.00 179.00 10.00 +19 44.00 5.00 20.00 87.00 117.00 10.00 +20 42.00 10.00 40.00 72.00 102.00 10.00 +21 42.00 15.00 10.00 122.00 152.00 10.00 +22 40.00 5.00 10.00 67.00 97.00 10.00 +23 40.00 15.00 40.00 92.00 122.00 10.00 +24 38.00 5.00 30.00 65.00 95.00 10.00 +25 38.00 15.00 10.00 148.00 178.00 10.00 +26 35.00 5.00 20.00 154.00 184.00 10.00 +27 95.00 30.00 30.00 115.00 145.00 10.00 +28 95.00 35.00 20.00 62.00 92.00 10.00 +29 92.00 30.00 10.00 62.00 92.00 10.00 +30 90.00 35.00 10.00 67.00 97.00 10.00 +31 88.00 30.00 10.00 74.00 104.00 10.00 +32 88.00 35.00 20.00 61.00 91.00 10.00 +33 87.00 30.00 10.00 131.00 161.00 10.00 +34 85.00 25.00 10.00 51.00 81.00 10.00 +35 85.00 35.00 30.00 111.00 141.00 10.00 +36 67.00 85.00 20.00 139.00 169.00 10.00 +37 65.00 85.00 40.00 43.00 73.00 10.00 +38 65.00 82.00 10.00 124.00 154.00 10.00 +39 62.00 80.00 30.00 75.00 105.00 10.00 +40 60.00 80.00 10.00 37.00 67.00 10.00 +41 60.00 85.00 30.00 85.00 115.00 10.00 +42 58.00 75.00 20.00 92.00 122.00 10.00 +43 55.00 80.00 10.00 33.00 63.00 10.00 +44 55.00 85.00 20.00 128.00 158.00 10.00 +45 55.00 82.00 10.00 64.00 94.00 10.00 +46 20.00 82.00 10.00 37.00 67.00 10.00 +47 18.00 80.00 10.00 113.00 143.00 10.00 +48 2.00 45.00 10.00 45.00 75.00 10.00 +49 42.00 5.00 10.00 151.00 181.00 10.00 +50 42.00 12.00 10.00 104.00 134.00 10.00 +51 72.00 35.00 30.00 116.00 146.00 10.00 +52 55.00 20.00 19.00 83.00 113.00 10.00 +53 25.00 30.00 3.00 52.00 82.00 10.00 +54 20.00 50.00 5.00 91.00 121.00 10.00 +55 55.00 60.00 16.00 139.00 169.00 10.00 +56 30.00 60.00 16.00 140.00 170.00 10.00 +57 50.00 35.00 19.00 130.00 160.00 10.00 +58 30.00 25.00 23.00 96.00 126.00 10.00 +59 15.00 10.00 20.00 152.00 182.00 10.00 +60 10.00 20.00 19.00 42.00 72.00 10.00 +61 15.00 60.00 17.00 155.00 185.00 10.00 +62 45.00 65.00 9.00 66.00 96.00 10.00 +63 65.00 35.00 3.00 52.00 82.00 10.00 +64 65.00 20.00 6.00 39.00 69.00 10.00 +65 45.00 30.00 17.00 53.00 83.00 10.00 +66 35.00 40.00 16.00 11.00 41.00 10.00 +67 41.00 37.00 16.00 133.00 163.00 10.00 +68 64.00 42.00 9.00 70.00 100.00 10.00 +69 40.00 60.00 21.00 144.00 174.00 10.00 +70 31.00 52.00 27.00 41.00 71.00 10.00 +71 35.00 69.00 23.00 180.00 210.00 10.00 +72 65.00 55.00 14.00 65.00 95.00 10.00 +73 63.00 65.00 8.00 30.00 60.00 10.00 +74 2.00 60.00 5.00 77.00 107.00 10.00 +75 20.00 20.00 8.00 141.00 171.00 10.00 +76 5.00 5.00 16.00 74.00 104.00 10.00 +77 60.00 12.00 31.00 75.00 105.00 10.00 +78 23.00 3.00 7.00 150.00 180.00 10.00 +79 8.00 56.00 27.00 90.00 120.00 10.00 +80 6.00 68.00 30.00 89.00 119.00 10.00 +81 47.00 47.00 13.00 192.00 222.00 10.00 +82 49.00 58.00 10.00 86.00 116.00 10.00 +83 27.00 43.00 9.00 42.00 72.00 10.00 +84 37.00 31.00 14.00 35.00 65.00 10.00 +85 57.00 29.00 18.00 96.00 126.00 10.00 +86 63.00 23.00 2.00 87.00 117.00 10.00 +87 21.00 24.00 28.00 87.00 117.00 10.00 +88 12.00 24.00 13.00 90.00 120.00 10.00 +89 24.00 58.00 19.00 67.00 97.00 10.00 +90 67.00 5.00 25.00 144.00 174.00 10.00 +91 37.00 47.00 6.00 86.00 116.00 10.00 +92 49.00 42.00 13.00 167.00 197.00 10.00 +93 53.00 43.00 14.00 14.00 44.00 10.00 +94 61.00 52.00 3.00 178.00 208.00 10.00 +95 57.00 48.00 23.00 95.00 125.00 10.00 +96 56.00 37.00 6.00 34.00 64.00 10.00 +97 55.00 54.00 26.00 132.00 162.00 10.00 +98 4.00 18.00 35.00 120.00 150.00 10.00 +99 26.00 52.00 9.00 46.00 76.00 10.00 +100 26.00 35.00 15.00 77.00 107.00 10.00 +101 31.00 67.00 3.00 180.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc102.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc102.dat new file mode 100644 index 000000000..ffc011ae4 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc102.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 0.00 191.00 10.00 +3 22.00 75.00 30.00 0.00 199.00 10.00 +4 22.00 85.00 10.00 0.00 190.00 10.00 +5 20.00 80.00 40.00 141.00 171.00 10.00 +6 20.00 85.00 20.00 0.00 189.00 10.00 +7 18.00 75.00 20.00 95.00 125.00 10.00 +8 15.00 75.00 20.00 0.00 194.00 10.00 +9 15.00 80.00 10.00 91.00 121.00 10.00 +10 10.00 35.00 20.00 91.00 121.00 10.00 +11 10.00 40.00 30.00 119.00 149.00 10.00 +12 8.00 40.00 40.00 59.00 89.00 10.00 +13 8.00 45.00 20.00 0.00 197.00 10.00 +14 5.00 35.00 10.00 142.00 172.00 10.00 +15 5.00 45.00 10.00 35.00 65.00 10.00 +16 2.00 40.00 20.00 58.00 88.00 10.00 +17 0.00 40.00 20.00 72.00 102.00 10.00 +18 0.00 45.00 20.00 149.00 179.00 10.00 +19 44.00 5.00 20.00 87.00 117.00 10.00 +20 42.00 10.00 40.00 72.00 102.00 10.00 +21 42.00 15.00 10.00 122.00 152.00 10.00 +22 40.00 5.00 10.00 0.00 185.00 10.00 +23 40.00 15.00 40.00 92.00 122.00 10.00 +24 38.00 5.00 30.00 65.00 95.00 10.00 +25 38.00 15.00 10.00 148.00 178.00 10.00 +26 35.00 5.00 20.00 154.00 184.00 10.00 +27 95.00 30.00 30.00 0.00 171.00 10.00 +28 95.00 35.00 20.00 62.00 92.00 10.00 +29 92.00 30.00 10.00 62.00 92.00 10.00 +30 90.00 35.00 10.00 67.00 97.00 10.00 +31 88.00 30.00 10.00 74.00 104.00 10.00 +32 88.00 35.00 20.00 0.00 179.00 10.00 +33 87.00 30.00 10.00 131.00 161.00 10.00 +34 85.00 25.00 10.00 51.00 81.00 10.00 +35 85.00 35.00 30.00 0.00 182.00 10.00 +36 67.00 85.00 20.00 139.00 169.00 10.00 +37 65.00 85.00 40.00 43.00 73.00 10.00 +38 65.00 82.00 10.00 0.00 189.00 10.00 +39 62.00 80.00 30.00 75.00 105.00 10.00 +40 60.00 80.00 10.00 37.00 67.00 10.00 +41 60.00 85.00 30.00 85.00 115.00 10.00 +42 58.00 75.00 20.00 92.00 122.00 10.00 +43 55.00 80.00 10.00 33.00 63.00 10.00 +44 55.00 85.00 20.00 128.00 158.00 10.00 +45 55.00 82.00 10.00 64.00 94.00 10.00 +46 20.00 82.00 10.00 37.00 67.00 10.00 +47 18.00 80.00 10.00 113.00 143.00 10.00 +48 2.00 45.00 10.00 45.00 75.00 10.00 +49 42.00 5.00 10.00 0.00 184.00 10.00 +50 42.00 12.00 10.00 104.00 134.00 10.00 +51 72.00 35.00 30.00 0.00 194.00 10.00 +52 55.00 20.00 19.00 83.00 113.00 10.00 +53 25.00 30.00 3.00 0.00 205.00 10.00 +54 20.00 50.00 5.00 91.00 121.00 10.00 +55 55.00 60.00 16.00 139.00 169.00 10.00 +56 30.00 60.00 16.00 140.00 170.00 10.00 +57 50.00 35.00 19.00 130.00 160.00 10.00 +58 30.00 25.00 23.00 96.00 126.00 10.00 +59 15.00 10.00 20.00 152.00 182.00 10.00 +60 10.00 20.00 19.00 0.00 187.00 10.00 +61 15.00 60.00 17.00 155.00 185.00 10.00 +62 45.00 65.00 9.00 66.00 96.00 10.00 +63 65.00 35.00 3.00 52.00 82.00 10.00 +64 65.00 20.00 6.00 39.00 69.00 10.00 +65 45.00 30.00 17.00 53.00 83.00 10.00 +66 35.00 40.00 16.00 11.00 41.00 10.00 +67 41.00 37.00 16.00 133.00 163.00 10.00 +68 64.00 42.00 9.00 70.00 100.00 10.00 +69 40.00 60.00 21.00 144.00 174.00 10.00 +70 31.00 52.00 27.00 41.00 71.00 10.00 +71 35.00 69.00 23.00 180.00 210.00 10.00 +72 65.00 55.00 14.00 65.00 95.00 10.00 +73 63.00 65.00 8.00 0.00 202.00 10.00 +74 2.00 60.00 5.00 77.00 107.00 10.00 +75 20.00 20.00 8.00 141.00 171.00 10.00 +76 5.00 5.00 16.00 0.00 172.00 10.00 +77 60.00 12.00 31.00 75.00 105.00 10.00 +78 23.00 3.00 7.00 150.00 180.00 10.00 +79 8.00 56.00 27.00 90.00 120.00 10.00 +80 6.00 68.00 30.00 89.00 119.00 10.00 +81 47.00 47.00 13.00 192.00 222.00 10.00 +82 49.00 58.00 10.00 86.00 116.00 10.00 +83 27.00 43.00 9.00 0.00 215.00 10.00 +84 37.00 31.00 14.00 0.00 210.00 10.00 +85 57.00 29.00 18.00 96.00 126.00 10.00 +86 63.00 23.00 2.00 0.00 194.00 10.00 +87 21.00 24.00 28.00 87.00 117.00 10.00 +88 12.00 24.00 13.00 90.00 120.00 10.00 +89 24.00 58.00 19.00 67.00 97.00 10.00 +90 67.00 5.00 25.00 144.00 174.00 10.00 +91 37.00 47.00 6.00 86.00 116.00 10.00 +92 49.00 42.00 13.00 0.00 217.00 10.00 +93 53.00 43.00 14.00 14.00 44.00 10.00 +94 61.00 52.00 3.00 178.00 208.00 10.00 +95 57.00 48.00 23.00 0.00 212.00 10.00 +96 56.00 37.00 6.00 0.00 209.00 10.00 +97 55.00 54.00 26.00 0.00 214.00 10.00 +98 4.00 18.00 35.00 120.00 150.00 10.00 +99 26.00 52.00 9.00 0.00 215.00 10.00 +100 26.00 35.00 15.00 77.00 107.00 10.00 +101 31.00 67.00 3.00 180.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc103.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc103.dat new file mode 100644 index 000000000..978d0d59b --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc103.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 0.00 191.00 10.00 +3 22.00 75.00 30.00 0.00 199.00 10.00 +4 22.00 85.00 10.00 0.00 190.00 10.00 +5 20.00 80.00 40.00 141.00 171.00 10.00 +6 20.00 85.00 20.00 0.00 189.00 10.00 +7 18.00 75.00 20.00 95.00 125.00 10.00 +8 15.00 75.00 20.00 0.00 194.00 10.00 +9 15.00 80.00 10.00 91.00 121.00 10.00 +10 10.00 35.00 20.00 91.00 121.00 10.00 +11 10.00 40.00 30.00 119.00 149.00 10.00 +12 8.00 40.00 40.00 59.00 89.00 10.00 +13 8.00 45.00 20.00 0.00 197.00 10.00 +14 5.00 35.00 10.00 142.00 172.00 10.00 +15 5.00 45.00 10.00 0.00 194.00 10.00 +16 2.00 40.00 20.00 58.00 88.00 10.00 +17 0.00 40.00 20.00 0.00 188.00 10.00 +18 0.00 45.00 20.00 149.00 179.00 10.00 +19 44.00 5.00 20.00 0.00 184.00 10.00 +20 42.00 10.00 40.00 0.00 189.00 10.00 +21 42.00 15.00 10.00 0.00 194.00 10.00 +22 40.00 5.00 10.00 0.00 185.00 10.00 +23 40.00 15.00 40.00 92.00 122.00 10.00 +24 38.00 5.00 30.00 65.00 95.00 10.00 +25 38.00 15.00 10.00 0.00 194.00 10.00 +26 35.00 5.00 20.00 154.00 184.00 10.00 +27 95.00 30.00 30.00 0.00 171.00 10.00 +28 95.00 35.00 20.00 62.00 92.00 10.00 +29 92.00 30.00 10.00 0.00 174.00 10.00 +30 90.00 35.00 10.00 0.00 177.00 10.00 +31 88.00 30.00 10.00 74.00 104.00 10.00 +32 88.00 35.00 20.00 0.00 179.00 10.00 +33 87.00 30.00 10.00 0.00 178.00 10.00 +34 85.00 25.00 10.00 51.00 81.00 10.00 +35 85.00 35.00 30.00 0.00 182.00 10.00 +36 67.00 85.00 20.00 139.00 169.00 10.00 +37 65.00 85.00 40.00 43.00 73.00 10.00 +38 65.00 82.00 10.00 0.00 189.00 10.00 +39 62.00 80.00 30.00 75.00 105.00 10.00 +40 60.00 80.00 10.00 37.00 67.00 10.00 +41 60.00 85.00 30.00 85.00 115.00 10.00 +42 58.00 75.00 20.00 92.00 122.00 10.00 +43 55.00 80.00 10.00 33.00 63.00 10.00 +44 55.00 85.00 20.00 0.00 191.00 10.00 +45 55.00 82.00 10.00 64.00 94.00 10.00 +46 20.00 82.00 10.00 37.00 67.00 10.00 +47 18.00 80.00 10.00 0.00 192.00 10.00 +48 2.00 45.00 10.00 0.00 191.00 10.00 +49 42.00 5.00 10.00 0.00 184.00 10.00 +50 42.00 12.00 10.00 104.00 134.00 10.00 +51 72.00 35.00 30.00 0.00 194.00 10.00 +52 55.00 20.00 19.00 0.00 196.00 10.00 +53 25.00 30.00 3.00 0.00 205.00 10.00 +54 20.00 50.00 5.00 91.00 121.00 10.00 +55 55.00 60.00 16.00 0.00 211.00 10.00 +56 30.00 60.00 16.00 140.00 170.00 10.00 +57 50.00 35.00 19.00 130.00 160.00 10.00 +58 30.00 25.00 23.00 0.00 203.00 10.00 +59 15.00 10.00 20.00 152.00 182.00 10.00 +60 10.00 20.00 19.00 0.00 187.00 10.00 +61 15.00 60.00 17.00 0.00 203.00 10.00 +62 45.00 65.00 9.00 0.00 214.00 10.00 +63 65.00 35.00 3.00 52.00 82.00 10.00 +64 65.00 20.00 6.00 0.00 190.00 10.00 +65 45.00 30.00 17.00 53.00 83.00 10.00 +66 35.00 40.00 16.00 11.00 41.00 10.00 +67 41.00 37.00 16.00 133.00 163.00 10.00 +68 64.00 42.00 9.00 70.00 100.00 10.00 +69 40.00 60.00 21.00 144.00 174.00 10.00 +70 31.00 52.00 27.00 41.00 71.00 10.00 +71 35.00 69.00 23.00 180.00 210.00 10.00 +72 65.00 55.00 14.00 0.00 204.00 10.00 +73 63.00 65.00 8.00 0.00 202.00 10.00 +74 2.00 60.00 5.00 0.00 190.00 10.00 +75 20.00 20.00 8.00 141.00 171.00 10.00 +76 5.00 5.00 16.00 0.00 172.00 10.00 +77 60.00 12.00 31.00 75.00 105.00 10.00 +78 23.00 3.00 7.00 150.00 180.00 10.00 +79 8.00 56.00 27.00 90.00 120.00 10.00 +80 6.00 68.00 30.00 89.00 119.00 10.00 +81 47.00 47.00 13.00 192.00 222.00 10.00 +82 49.00 58.00 10.00 0.00 217.00 10.00 +83 27.00 43.00 9.00 0.00 215.00 10.00 +84 37.00 31.00 14.00 0.00 210.00 10.00 +85 57.00 29.00 18.00 96.00 126.00 10.00 +86 63.00 23.00 2.00 0.00 194.00 10.00 +87 21.00 24.00 28.00 0.00 197.00 10.00 +88 12.00 24.00 13.00 90.00 120.00 10.00 +89 24.00 58.00 19.00 67.00 97.00 10.00 +90 67.00 5.00 25.00 0.00 177.00 10.00 +91 37.00 47.00 6.00 0.00 225.00 10.00 +92 49.00 42.00 13.00 0.00 217.00 10.00 +93 53.00 43.00 14.00 14.00 44.00 10.00 +94 61.00 52.00 3.00 178.00 208.00 10.00 +95 57.00 48.00 23.00 0.00 212.00 10.00 +96 56.00 37.00 6.00 0.00 209.00 10.00 +97 55.00 54.00 26.00 0.00 214.00 10.00 +98 4.00 18.00 35.00 0.00 181.00 10.00 +99 26.00 52.00 9.00 0.00 215.00 10.00 +100 26.00 35.00 15.00 77.00 107.00 10.00 +101 31.00 67.00 3.00 180.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc104.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc104.dat new file mode 100644 index 000000000..b69acd823 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc104.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 0.00 191.00 10.00 +3 22.00 75.00 30.00 0.00 199.00 10.00 +4 22.00 85.00 10.00 0.00 190.00 10.00 +5 20.00 80.00 40.00 141.00 171.00 10.00 +6 20.00 85.00 20.00 0.00 189.00 10.00 +7 18.00 75.00 20.00 0.00 196.00 10.00 +8 15.00 75.00 20.00 0.00 194.00 10.00 +9 15.00 80.00 10.00 91.00 121.00 10.00 +10 10.00 35.00 20.00 91.00 121.00 10.00 +11 10.00 40.00 30.00 0.00 198.00 10.00 +12 8.00 40.00 40.00 59.00 89.00 10.00 +13 8.00 45.00 20.00 0.00 197.00 10.00 +14 5.00 35.00 10.00 142.00 172.00 10.00 +15 5.00 45.00 10.00 0.00 194.00 10.00 +16 2.00 40.00 20.00 58.00 88.00 10.00 +17 0.00 40.00 20.00 0.00 188.00 10.00 +18 0.00 45.00 20.00 0.00 189.00 10.00 +19 44.00 5.00 20.00 0.00 184.00 10.00 +20 42.00 10.00 40.00 0.00 189.00 10.00 +21 42.00 15.00 10.00 0.00 194.00 10.00 +22 40.00 5.00 10.00 0.00 185.00 10.00 +23 40.00 15.00 40.00 0.00 195.00 10.00 +24 38.00 5.00 30.00 65.00 95.00 10.00 +25 38.00 15.00 10.00 0.00 194.00 10.00 +26 35.00 5.00 20.00 154.00 184.00 10.00 +27 95.00 30.00 30.00 0.00 171.00 10.00 +28 95.00 35.00 20.00 0.00 172.00 10.00 +29 92.00 30.00 10.00 0.00 174.00 10.00 +30 90.00 35.00 10.00 0.00 177.00 10.00 +31 88.00 30.00 10.00 0.00 178.00 10.00 +32 88.00 35.00 20.00 0.00 179.00 10.00 +33 87.00 30.00 10.00 0.00 178.00 10.00 +34 85.00 25.00 10.00 0.00 178.00 10.00 +35 85.00 35.00 30.00 0.00 182.00 10.00 +36 67.00 85.00 20.00 0.00 185.00 10.00 +37 65.00 85.00 40.00 0.00 186.00 10.00 +38 65.00 82.00 10.00 0.00 189.00 10.00 +39 62.00 80.00 30.00 75.00 105.00 10.00 +40 60.00 80.00 10.00 0.00 193.00 10.00 +41 60.00 85.00 30.00 0.00 189.00 10.00 +42 58.00 75.00 20.00 0.00 199.00 10.00 +43 55.00 80.00 10.00 0.00 196.00 10.00 +44 55.00 85.00 20.00 0.00 191.00 10.00 +45 55.00 82.00 10.00 64.00 94.00 10.00 +46 20.00 82.00 10.00 0.00 192.00 10.00 +47 18.00 80.00 10.00 0.00 192.00 10.00 +48 2.00 45.00 10.00 0.00 191.00 10.00 +49 42.00 5.00 10.00 0.00 184.00 10.00 +50 42.00 12.00 10.00 0.00 191.00 10.00 +51 72.00 35.00 30.00 0.00 194.00 10.00 +52 55.00 20.00 19.00 0.00 196.00 10.00 +53 25.00 30.00 3.00 0.00 205.00 10.00 +54 20.00 50.00 5.00 91.00 121.00 10.00 +55 55.00 60.00 16.00 0.00 211.00 10.00 +56 30.00 60.00 16.00 140.00 170.00 10.00 +57 50.00 35.00 19.00 0.00 211.00 10.00 +58 30.00 25.00 23.00 0.00 203.00 10.00 +59 15.00 10.00 20.00 152.00 182.00 10.00 +60 10.00 20.00 19.00 0.00 187.00 10.00 +61 15.00 60.00 17.00 0.00 203.00 10.00 +62 45.00 65.00 9.00 0.00 214.00 10.00 +63 65.00 35.00 3.00 52.00 82.00 10.00 +64 65.00 20.00 6.00 0.00 190.00 10.00 +65 45.00 30.00 17.00 0.00 209.00 10.00 +66 35.00 40.00 16.00 0.00 218.00 10.00 +67 41.00 37.00 16.00 0.00 216.00 10.00 +68 64.00 42.00 9.00 70.00 100.00 10.00 +69 40.00 60.00 21.00 0.00 220.00 10.00 +70 31.00 52.00 27.00 41.00 71.00 10.00 +71 35.00 69.00 23.00 0.00 210.00 10.00 +72 65.00 55.00 14.00 0.00 204.00 10.00 +73 63.00 65.00 8.00 0.00 202.00 10.00 +74 2.00 60.00 5.00 0.00 190.00 10.00 +75 20.00 20.00 8.00 141.00 171.00 10.00 +76 5.00 5.00 16.00 0.00 172.00 10.00 +77 60.00 12.00 31.00 75.00 105.00 10.00 +78 23.00 3.00 7.00 150.00 180.00 10.00 +79 8.00 56.00 27.00 0.00 197.00 10.00 +80 6.00 68.00 30.00 89.00 119.00 10.00 +81 47.00 47.00 13.00 0.00 222.00 10.00 +82 49.00 58.00 10.00 0.00 217.00 10.00 +83 27.00 43.00 9.00 0.00 215.00 10.00 +84 37.00 31.00 14.00 0.00 210.00 10.00 +85 57.00 29.00 18.00 96.00 126.00 10.00 +86 63.00 23.00 2.00 0.00 194.00 10.00 +87 21.00 24.00 28.00 0.00 197.00 10.00 +88 12.00 24.00 13.00 90.00 120.00 10.00 +89 24.00 58.00 19.00 0.00 212.00 10.00 +90 67.00 5.00 25.00 0.00 177.00 10.00 +91 37.00 47.00 6.00 0.00 225.00 10.00 +92 49.00 42.00 13.00 0.00 217.00 10.00 +93 53.00 43.00 14.00 14.00 44.00 10.00 +94 61.00 52.00 3.00 0.00 208.00 10.00 +95 57.00 48.00 23.00 0.00 212.00 10.00 +96 56.00 37.00 6.00 0.00 209.00 10.00 +97 55.00 54.00 26.00 0.00 214.00 10.00 +98 4.00 18.00 35.00 0.00 181.00 10.00 +99 26.00 52.00 9.00 0.00 215.00 10.00 +100 26.00 35.00 15.00 77.00 107.00 10.00 +101 31.00 67.00 3.00 180.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc105.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc105.dat new file mode 100644 index 000000000..97b9e9825 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc105.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 71.00 191.00 10.00 +3 22.00 75.00 30.00 30.00 150.00 10.00 +4 22.00 85.00 10.00 64.00 184.00 10.00 +5 20.00 80.00 40.00 151.00 161.00 10.00 +6 20.00 85.00 20.00 40.00 160.00 10.00 +7 18.00 75.00 20.00 96.00 123.00 10.00 +8 15.00 75.00 20.00 35.00 155.00 10.00 +9 15.00 80.00 10.00 101.00 111.00 10.00 +10 10.00 35.00 20.00 101.00 111.00 10.00 +11 10.00 40.00 30.00 123.00 144.00 10.00 +12 8.00 40.00 40.00 69.00 79.00 10.00 +13 8.00 45.00 20.00 32.00 152.00 10.00 +14 5.00 35.00 10.00 152.00 162.00 10.00 +15 5.00 45.00 10.00 35.00 117.00 10.00 +16 2.00 40.00 20.00 68.00 78.00 10.00 +17 0.00 40.00 20.00 59.00 114.00 10.00 +18 0.00 45.00 20.00 147.00 180.00 10.00 +19 44.00 5.00 20.00 79.00 124.00 10.00 +20 42.00 10.00 40.00 58.00 115.00 10.00 +21 42.00 15.00 10.00 111.00 162.00 10.00 +22 40.00 5.00 10.00 45.00 165.00 10.00 +23 40.00 15.00 40.00 94.00 119.00 10.00 +24 38.00 5.00 30.00 75.00 85.00 10.00 +25 38.00 15.00 10.00 128.00 194.00 10.00 +26 35.00 5.00 20.00 171.00 181.00 10.00 +27 95.00 30.00 30.00 58.00 171.00 10.00 +28 95.00 35.00 20.00 60.00 93.00 10.00 +29 92.00 30.00 10.00 55.00 120.00 10.00 +30 90.00 35.00 10.00 52.00 112.00 10.00 +31 88.00 30.00 10.00 75.00 102.00 10.00 +32 88.00 35.00 20.00 50.00 170.00 10.00 +33 87.00 30.00 10.00 116.00 175.00 10.00 +34 85.00 25.00 10.00 51.00 85.00 10.00 +35 85.00 35.00 30.00 62.00 182.00 10.00 +36 67.00 85.00 20.00 138.00 169.00 10.00 +37 65.00 85.00 40.00 43.00 78.00 10.00 +38 65.00 82.00 10.00 69.00 189.00 10.00 +39 62.00 80.00 30.00 85.00 95.00 10.00 +40 60.00 80.00 10.00 36.00 74.00 10.00 +41 60.00 85.00 30.00 87.00 112.00 10.00 +42 58.00 75.00 20.00 92.00 121.00 10.00 +43 55.00 80.00 10.00 33.00 66.00 10.00 +44 55.00 85.00 20.00 117.00 168.00 10.00 +45 55.00 82.00 10.00 74.00 84.00 10.00 +46 20.00 82.00 10.00 37.00 72.00 10.00 +47 18.00 80.00 10.00 98.00 157.00 10.00 +48 2.00 45.00 10.00 38.00 109.00 10.00 +49 42.00 5.00 10.00 64.00 184.00 10.00 +50 42.00 12.00 10.00 109.00 128.00 10.00 +51 72.00 35.00 30.00 71.00 191.00 10.00 +52 55.00 20.00 19.00 69.00 126.00 10.00 +53 25.00 30.00 3.00 25.00 145.00 10.00 +54 20.00 50.00 5.00 101.00 111.00 10.00 +55 55.00 60.00 16.00 127.00 180.00 10.00 +56 30.00 60.00 16.00 150.00 160.00 10.00 +57 50.00 35.00 19.00 130.00 159.00 10.00 +58 30.00 25.00 23.00 82.00 139.00 10.00 +59 15.00 10.00 20.00 172.00 182.00 10.00 +60 10.00 20.00 19.00 42.00 162.00 10.00 +61 15.00 60.00 17.00 137.00 202.00 10.00 +62 45.00 65.00 9.00 55.00 106.00 10.00 +63 65.00 35.00 3.00 62.00 72.00 10.00 +64 65.00 20.00 6.00 39.00 108.00 10.00 +65 45.00 30.00 17.00 53.00 82.00 10.00 +66 35.00 40.00 16.00 11.00 43.00 10.00 +67 41.00 37.00 16.00 134.00 161.00 10.00 +68 64.00 42.00 9.00 80.00 90.00 10.00 +69 40.00 60.00 21.00 144.00 173.00 10.00 +70 31.00 52.00 27.00 51.00 61.00 10.00 +71 35.00 69.00 23.00 172.00 210.00 10.00 +72 65.00 55.00 14.00 52.00 107.00 10.00 +73 63.00 65.00 8.00 27.00 147.00 10.00 +74 2.00 60.00 5.00 65.00 118.00 10.00 +75 20.00 20.00 8.00 151.00 161.00 10.00 +76 5.00 5.00 16.00 57.00 172.00 10.00 +77 60.00 12.00 31.00 85.00 95.00 10.00 +78 23.00 3.00 7.00 163.00 173.00 10.00 +79 8.00 56.00 27.00 90.00 119.00 10.00 +80 6.00 68.00 30.00 99.00 109.00 10.00 +81 47.00 47.00 13.00 190.00 222.00 10.00 +82 49.00 58.00 10.00 80.00 121.00 10.00 +83 27.00 43.00 9.00 14.00 134.00 10.00 +84 37.00 31.00 14.00 19.00 139.00 10.00 +85 57.00 29.00 18.00 106.00 116.00 10.00 +86 63.00 23.00 2.00 42.00 162.00 10.00 +87 21.00 24.00 28.00 77.00 126.00 10.00 +88 12.00 24.00 13.00 100.00 110.00 10.00 +89 24.00 58.00 19.00 67.00 96.00 10.00 +90 67.00 5.00 25.00 105.00 177.00 10.00 +91 37.00 47.00 6.00 74.00 127.00 10.00 +92 49.00 42.00 13.00 97.00 217.00 10.00 +93 53.00 43.00 14.00 15.00 25.00 10.00 +94 61.00 52.00 3.00 173.00 208.00 10.00 +95 57.00 48.00 23.00 50.00 170.00 10.00 +96 56.00 37.00 6.00 20.00 140.00 10.00 +97 55.00 54.00 26.00 87.00 207.00 10.00 +98 4.00 18.00 35.00 112.00 157.00 10.00 +99 26.00 52.00 9.00 14.00 134.00 10.00 +100 26.00 35.00 15.00 87.00 97.00 10.00 +101 31.00 67.00 3.00 200.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc106.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc106.dat new file mode 100644 index 000000000..170215926 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc106.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 130.00 190.00 10.00 +3 22.00 75.00 30.00 35.00 95.00 10.00 +4 22.00 85.00 10.00 94.00 154.00 10.00 +5 20.00 80.00 40.00 126.00 186.00 10.00 +6 20.00 85.00 20.00 40.00 100.00 10.00 +7 18.00 75.00 20.00 80.00 140.00 10.00 +8 15.00 75.00 20.00 64.00 124.00 10.00 +9 15.00 80.00 10.00 76.00 136.00 10.00 +10 10.00 35.00 20.00 76.00 136.00 10.00 +11 10.00 40.00 30.00 104.00 164.00 10.00 +12 8.00 40.00 40.00 44.00 104.00 10.00 +13 8.00 45.00 20.00 49.00 109.00 10.00 +14 5.00 35.00 10.00 127.00 187.00 10.00 +15 5.00 45.00 10.00 35.00 95.00 10.00 +16 2.00 40.00 20.00 43.00 103.00 10.00 +17 0.00 40.00 20.00 57.00 117.00 10.00 +18 0.00 45.00 20.00 129.00 189.00 10.00 +19 44.00 5.00 20.00 72.00 132.00 10.00 +20 42.00 10.00 40.00 57.00 117.00 10.00 +21 42.00 15.00 10.00 107.00 167.00 10.00 +22 40.00 5.00 10.00 52.00 112.00 10.00 +23 40.00 15.00 40.00 77.00 137.00 10.00 +24 38.00 5.00 30.00 50.00 110.00 10.00 +25 38.00 15.00 10.00 133.00 193.00 10.00 +26 35.00 5.00 20.00 124.00 184.00 10.00 +27 95.00 30.00 30.00 100.00 160.00 10.00 +28 95.00 35.00 20.00 57.00 117.00 10.00 +29 92.00 30.00 10.00 55.00 115.00 10.00 +30 90.00 35.00 10.00 52.00 112.00 10.00 +31 88.00 30.00 10.00 59.00 119.00 10.00 +32 88.00 35.00 20.00 50.00 110.00 10.00 +33 87.00 30.00 10.00 116.00 176.00 10.00 +34 85.00 25.00 10.00 51.00 111.00 10.00 +35 85.00 35.00 30.00 96.00 156.00 10.00 +36 67.00 85.00 20.00 124.00 184.00 10.00 +37 65.00 85.00 40.00 43.00 103.00 10.00 +38 65.00 82.00 10.00 109.00 169.00 10.00 +39 62.00 80.00 30.00 60.00 120.00 10.00 +40 60.00 80.00 10.00 36.00 96.00 10.00 +41 60.00 85.00 30.00 70.00 130.00 10.00 +42 58.00 75.00 20.00 77.00 137.00 10.00 +43 55.00 80.00 10.00 33.00 93.00 10.00 +44 55.00 85.00 20.00 113.00 173.00 10.00 +45 55.00 82.00 10.00 49.00 109.00 10.00 +46 20.00 82.00 10.00 37.00 97.00 10.00 +47 18.00 80.00 10.00 98.00 158.00 10.00 +48 2.00 45.00 10.00 38.00 98.00 10.00 +49 42.00 5.00 10.00 124.00 184.00 10.00 +50 42.00 12.00 10.00 89.00 149.00 10.00 +51 72.00 35.00 30.00 101.00 161.00 10.00 +52 55.00 20.00 19.00 68.00 128.00 10.00 +53 25.00 30.00 3.00 37.00 97.00 10.00 +54 20.00 50.00 5.00 76.00 136.00 10.00 +55 55.00 60.00 16.00 124.00 184.00 10.00 +56 30.00 60.00 16.00 125.00 185.00 10.00 +57 50.00 35.00 19.00 115.00 175.00 10.00 +58 30.00 25.00 23.00 81.00 141.00 10.00 +59 15.00 10.00 20.00 122.00 182.00 10.00 +60 10.00 20.00 19.00 42.00 102.00 10.00 +61 15.00 60.00 17.00 140.00 200.00 10.00 +62 45.00 65.00 9.00 51.00 111.00 10.00 +63 65.00 35.00 3.00 37.00 97.00 10.00 +64 65.00 20.00 6.00 39.00 99.00 10.00 +65 45.00 30.00 17.00 38.00 98.00 10.00 +66 35.00 40.00 16.00 11.00 71.00 10.00 +67 41.00 37.00 16.00 118.00 178.00 10.00 +68 64.00 42.00 9.00 55.00 115.00 10.00 +69 40.00 60.00 21.00 129.00 189.00 10.00 +70 31.00 52.00 27.00 26.00 86.00 10.00 +71 35.00 69.00 23.00 150.00 210.00 10.00 +72 65.00 55.00 14.00 50.00 110.00 10.00 +73 63.00 65.00 8.00 27.00 87.00 10.00 +74 2.00 60.00 5.00 62.00 122.00 10.00 +75 20.00 20.00 8.00 126.00 186.00 10.00 +76 5.00 5.00 16.00 59.00 119.00 10.00 +77 60.00 12.00 31.00 60.00 120.00 10.00 +78 23.00 3.00 7.00 120.00 180.00 10.00 +79 8.00 56.00 27.00 75.00 135.00 10.00 +80 6.00 68.00 30.00 74.00 134.00 10.00 +81 47.00 47.00 13.00 162.00 222.00 10.00 +82 49.00 58.00 10.00 71.00 131.00 10.00 +83 27.00 43.00 9.00 27.00 87.00 10.00 +84 37.00 31.00 14.00 20.00 80.00 10.00 +85 57.00 29.00 18.00 81.00 141.00 10.00 +86 63.00 23.00 2.00 72.00 132.00 10.00 +87 21.00 24.00 28.00 72.00 132.00 10.00 +88 12.00 24.00 13.00 75.00 135.00 10.00 +89 24.00 58.00 19.00 52.00 112.00 10.00 +90 67.00 5.00 25.00 117.00 177.00 10.00 +91 37.00 47.00 6.00 71.00 131.00 10.00 +92 49.00 42.00 13.00 152.00 212.00 10.00 +93 53.00 43.00 14.00 14.00 74.00 10.00 +94 61.00 52.00 3.00 148.00 208.00 10.00 +95 57.00 48.00 23.00 80.00 140.00 10.00 +96 56.00 37.00 6.00 20.00 80.00 10.00 +97 55.00 54.00 26.00 117.00 177.00 10.00 +98 4.00 18.00 35.00 105.00 165.00 10.00 +99 26.00 52.00 9.00 31.00 91.00 10.00 +100 26.00 35.00 15.00 62.00 122.00 10.00 +101 31.00 67.00 3.00 150.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc107.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc107.dat new file mode 100644 index 000000000..d2109f1d1 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc107.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 125.00 191.00 10.00 +3 22.00 75.00 30.00 32.00 97.00 10.00 +4 22.00 85.00 10.00 101.00 146.00 10.00 +5 20.00 80.00 40.00 71.00 193.00 10.00 +6 20.00 85.00 20.00 40.00 113.00 10.00 +7 18.00 75.00 20.00 55.00 164.00 10.00 +8 15.00 75.00 20.00 69.00 118.00 10.00 +9 15.00 80.00 10.00 56.00 155.00 10.00 +10 10.00 35.00 20.00 51.00 160.00 10.00 +11 10.00 40.00 30.00 90.00 177.00 10.00 +12 8.00 40.00 40.00 33.00 152.00 10.00 +13 8.00 45.00 20.00 49.00 108.00 10.00 +14 5.00 35.00 10.00 62.00 191.00 10.00 +15 5.00 45.00 10.00 35.00 117.00 10.00 +16 2.00 40.00 20.00 39.00 161.00 10.00 +17 0.00 40.00 20.00 59.00 114.00 10.00 +18 0.00 45.00 20.00 60.00 189.00 10.00 +19 44.00 5.00 20.00 79.00 124.00 10.00 +20 42.00 10.00 40.00 58.00 115.00 10.00 +21 42.00 15.00 10.00 111.00 162.00 10.00 +22 40.00 5.00 10.00 52.00 111.00 10.00 +23 40.00 15.00 40.00 55.00 158.00 10.00 +24 38.00 5.00 30.00 45.00 164.00 10.00 +25 38.00 15.00 10.00 128.00 194.00 10.00 +26 35.00 5.00 20.00 54.00 184.00 10.00 +27 95.00 30.00 30.00 105.00 154.00 10.00 +28 95.00 35.00 20.00 57.00 172.00 10.00 +29 92.00 30.00 10.00 55.00 120.00 10.00 +30 90.00 35.00 10.00 52.00 112.00 10.00 +31 88.00 30.00 10.00 52.00 159.00 10.00 +32 88.00 35.00 20.00 50.00 110.00 10.00 +33 87.00 30.00 10.00 116.00 175.00 10.00 +34 85.00 25.00 10.00 51.00 178.00 10.00 +35 85.00 35.00 30.00 100.00 151.00 10.00 +36 67.00 85.00 20.00 61.00 185.00 10.00 +37 65.00 85.00 40.00 43.00 186.00 10.00 +38 65.00 82.00 10.00 113.00 164.00 10.00 +39 62.00 80.00 30.00 37.00 148.00 10.00 +40 60.00 80.00 10.00 36.00 191.00 10.00 +41 60.00 85.00 30.00 50.00 149.00 10.00 +42 58.00 75.00 20.00 48.00 165.00 10.00 +43 55.00 80.00 10.00 33.00 166.00 10.00 +44 55.00 85.00 20.00 117.00 168.00 10.00 +45 55.00 82.00 10.00 35.00 148.00 10.00 +46 20.00 82.00 10.00 37.00 177.00 10.00 +47 18.00 80.00 10.00 98.00 157.00 10.00 +48 2.00 45.00 10.00 38.00 109.00 10.00 +49 42.00 5.00 10.00 120.00 184.00 10.00 +50 42.00 12.00 10.00 79.00 158.00 10.00 +51 72.00 35.00 30.00 104.00 157.00 10.00 +52 55.00 20.00 19.00 69.00 126.00 10.00 +53 25.00 30.00 3.00 36.00 97.00 10.00 +54 20.00 50.00 5.00 57.00 154.00 10.00 +55 55.00 60.00 16.00 127.00 180.00 10.00 +56 30.00 60.00 16.00 95.00 214.00 10.00 +57 50.00 35.00 19.00 88.00 201.00 10.00 +58 30.00 25.00 23.00 82.00 139.00 10.00 +59 15.00 10.00 20.00 56.00 182.00 10.00 +60 10.00 20.00 19.00 42.00 125.00 10.00 +61 15.00 60.00 17.00 137.00 202.00 10.00 +62 45.00 65.00 9.00 55.00 106.00 10.00 +63 65.00 35.00 3.00 29.00 158.00 10.00 +64 65.00 20.00 6.00 39.00 108.00 10.00 +65 45.00 30.00 17.00 20.00 139.00 10.00 +66 35.00 40.00 16.00 11.00 140.00 10.00 +67 41.00 37.00 16.00 92.00 203.00 10.00 +68 64.00 42.00 9.00 28.00 141.00 10.00 +69 40.00 60.00 21.00 100.00 217.00 10.00 +70 31.00 52.00 27.00 9.00 134.00 10.00 +71 35.00 69.00 23.00 60.00 210.00 10.00 +72 65.00 55.00 14.00 52.00 107.00 10.00 +73 63.00 65.00 8.00 27.00 101.00 10.00 +74 2.00 60.00 5.00 65.00 118.00 10.00 +75 20.00 20.00 8.00 72.00 193.00 10.00 +76 5.00 5.00 16.00 60.00 117.00 10.00 +77 60.00 12.00 31.00 42.00 143.00 10.00 +78 23.00 3.00 7.00 52.00 180.00 10.00 +79 8.00 56.00 27.00 46.00 163.00 10.00 +80 6.00 68.00 30.00 54.00 153.00 10.00 +81 47.00 47.00 13.00 97.00 222.00 10.00 +82 49.00 58.00 10.00 80.00 121.00 10.00 +83 27.00 43.00 9.00 26.00 87.00 10.00 +84 37.00 31.00 14.00 19.00 87.00 10.00 +85 57.00 29.00 18.00 62.00 159.00 10.00 +86 63.00 23.00 2.00 76.00 127.00 10.00 +87 21.00 24.00 28.00 77.00 126.00 10.00 +88 12.00 24.00 13.00 68.00 141.00 10.00 +89 24.00 58.00 19.00 24.00 139.00 10.00 +90 67.00 5.00 25.00 105.00 177.00 10.00 +91 37.00 47.00 6.00 74.00 127.00 10.00 +92 49.00 42.00 13.00 151.00 212.00 10.00 +93 53.00 43.00 14.00 14.00 155.00 10.00 +94 61.00 52.00 3.00 69.00 208.00 10.00 +95 57.00 48.00 23.00 86.00 133.00 10.00 +96 56.00 37.00 6.00 20.00 84.00 10.00 +97 55.00 54.00 26.00 121.00 172.00 10.00 +98 4.00 18.00 35.00 112.00 157.00 10.00 +99 26.00 52.00 9.00 30.00 91.00 10.00 +100 26.00 35.00 15.00 37.00 146.00 10.00 +101 31.00 67.00 3.00 66.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc108.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc108.dat new file mode 100644 index 000000000..95a7a7e80 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc108.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 240.00 0.00 +2 25.00 85.00 20.00 49.00 191.00 10.00 +3 22.00 75.00 30.00 30.00 168.00 10.00 +4 22.00 85.00 10.00 95.00 152.00 10.00 +5 20.00 80.00 40.00 69.00 193.00 10.00 +6 20.00 85.00 20.00 40.00 189.00 10.00 +7 18.00 75.00 20.00 60.00 159.00 10.00 +8 15.00 75.00 20.00 54.00 133.00 10.00 +9 15.00 80.00 10.00 67.00 144.00 10.00 +10 10.00 35.00 20.00 57.00 154.00 10.00 +11 10.00 40.00 30.00 106.00 161.00 10.00 +12 8.00 40.00 40.00 33.00 152.00 10.00 +13 8.00 45.00 20.00 32.00 148.00 10.00 +14 5.00 35.00 10.00 53.00 191.00 10.00 +15 5.00 45.00 10.00 35.00 194.00 10.00 +16 2.00 40.00 20.00 39.00 163.00 10.00 +17 0.00 40.00 20.00 41.00 141.00 10.00 +18 0.00 45.00 20.00 51.00 189.00 10.00 +19 44.00 5.00 20.00 73.00 130.00 10.00 +20 42.00 10.00 40.00 40.00 148.00 10.00 +21 42.00 15.00 10.00 94.00 179.00 10.00 +22 40.00 5.00 10.00 45.00 161.00 10.00 +23 40.00 15.00 40.00 64.00 149.00 10.00 +24 38.00 5.00 30.00 45.00 164.00 10.00 +25 38.00 15.00 10.00 51.00 194.00 10.00 +26 35.00 5.00 20.00 45.00 183.00 10.00 +27 95.00 30.00 30.00 90.00 169.00 10.00 +28 95.00 35.00 20.00 57.00 172.00 10.00 +29 92.00 30.00 10.00 55.00 174.00 10.00 +30 90.00 35.00 10.00 52.00 174.00 10.00 +31 88.00 30.00 10.00 52.00 147.00 10.00 +32 88.00 35.00 20.00 50.00 172.00 10.00 +33 87.00 30.00 10.00 61.00 178.00 10.00 +34 85.00 25.00 10.00 51.00 178.00 10.00 +35 85.00 35.00 30.00 83.00 168.00 10.00 +36 67.00 85.00 20.00 57.00 185.00 10.00 +37 65.00 85.00 40.00 43.00 186.00 10.00 +38 65.00 82.00 10.00 95.00 182.00 10.00 +39 62.00 80.00 30.00 38.00 141.00 10.00 +40 60.00 80.00 10.00 36.00 193.00 10.00 +41 60.00 85.00 30.00 61.00 138.00 10.00 +42 58.00 75.00 20.00 49.00 164.00 10.00 +43 55.00 80.00 10.00 33.00 180.00 10.00 +44 55.00 85.00 20.00 100.00 185.00 10.00 +45 55.00 82.00 10.00 35.00 142.00 10.00 +46 20.00 82.00 10.00 37.00 192.00 10.00 +47 18.00 80.00 10.00 71.00 184.00 10.00 +48 2.00 45.00 10.00 38.00 191.00 10.00 +49 42.00 5.00 10.00 50.00 184.00 10.00 +50 42.00 12.00 10.00 99.00 138.00 10.00 +51 72.00 35.00 30.00 83.00 178.00 10.00 +52 55.00 20.00 19.00 45.00 150.00 10.00 +53 25.00 30.00 3.00 25.00 150.00 10.00 +54 20.00 50.00 5.00 68.00 143.00 10.00 +55 55.00 60.00 16.00 107.00 200.00 10.00 +56 30.00 60.00 16.00 95.00 214.00 10.00 +57 50.00 35.00 19.00 91.00 198.00 10.00 +58 30.00 25.00 23.00 56.00 165.00 10.00 +59 15.00 10.00 20.00 51.00 182.00 10.00 +60 10.00 20.00 19.00 42.00 187.00 10.00 +61 15.00 60.00 17.00 62.00 203.00 10.00 +62 45.00 65.00 9.00 37.00 124.00 10.00 +63 65.00 35.00 3.00 29.00 168.00 10.00 +64 65.00 20.00 6.00 39.00 190.00 10.00 +65 45.00 30.00 17.00 20.00 139.00 10.00 +66 35.00 40.00 16.00 11.00 150.00 10.00 +67 41.00 37.00 16.00 97.00 198.00 10.00 +68 64.00 42.00 9.00 31.00 138.00 10.00 +69 40.00 60.00 21.00 101.00 216.00 10.00 +70 31.00 52.00 27.00 9.00 139.00 10.00 +71 35.00 69.00 23.00 30.00 210.00 10.00 +72 65.00 55.00 14.00 30.00 129.00 10.00 +73 63.00 65.00 8.00 27.00 202.00 10.00 +74 2.00 60.00 5.00 46.00 137.00 10.00 +75 20.00 20.00 8.00 71.00 193.00 10.00 +76 5.00 5.00 16.00 57.00 165.00 10.00 +77 60.00 12.00 31.00 48.00 131.00 10.00 +78 23.00 3.00 7.00 49.00 180.00 10.00 +79 8.00 56.00 27.00 47.00 162.00 10.00 +80 6.00 68.00 30.00 65.00 142.00 10.00 +81 47.00 47.00 13.00 93.00 222.00 10.00 +82 49.00 58.00 10.00 78.00 123.00 10.00 +83 27.00 43.00 9.00 14.00 140.00 10.00 +84 37.00 31.00 14.00 19.00 172.00 10.00 +85 57.00 29.00 18.00 73.00 148.00 10.00 +86 63.00 23.00 2.00 59.00 144.00 10.00 +87 21.00 24.00 28.00 63.00 140.00 10.00 +88 12.00 24.00 13.00 91.00 118.00 10.00 +89 24.00 58.00 19.00 27.00 136.00 10.00 +90 67.00 5.00 25.00 52.00 177.00 10.00 +91 37.00 47.00 6.00 53.00 148.00 10.00 +92 49.00 42.00 13.00 89.00 217.00 10.00 +93 53.00 43.00 14.00 14.00 177.00 10.00 +94 61.00 52.00 3.00 50.00 208.00 10.00 +95 57.00 48.00 23.00 76.00 143.00 10.00 +96 56.00 37.00 6.00 20.00 159.00 10.00 +97 55.00 54.00 26.00 105.00 188.00 10.00 +98 4.00 18.00 35.00 104.00 165.00 10.00 +99 26.00 52.00 9.00 14.00 136.00 10.00 +100 26.00 35.00 15.00 42.00 141.00 10.00 +101 31.00 67.00 3.00 43.00 210.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc201.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc201.dat new file mode 100644 index 000000000..6bc337802 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc201.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 673.00 793.00 10.00 +3 22.00 75.00 30.00 152.00 272.00 10.00 +4 22.00 85.00 10.00 471.00 591.00 10.00 +5 20.00 80.00 40.00 644.00 764.00 10.00 +6 20.00 85.00 20.00 73.00 193.00 10.00 +7 18.00 75.00 20.00 388.00 508.00 10.00 +8 15.00 75.00 20.00 300.00 420.00 10.00 +9 15.00 80.00 10.00 367.00 487.00 10.00 +10 10.00 35.00 20.00 371.00 491.00 10.00 +11 10.00 40.00 30.00 519.00 639.00 10.00 +12 8.00 40.00 40.00 195.00 315.00 10.00 +13 8.00 45.00 20.00 223.00 343.00 10.00 +14 5.00 35.00 10.00 653.00 773.00 10.00 +15 5.00 45.00 10.00 35.00 155.00 10.00 +16 2.00 40.00 20.00 174.00 294.00 10.00 +17 0.00 40.00 20.00 255.00 375.00 10.00 +18 0.00 45.00 20.00 703.00 823.00 10.00 +19 44.00 5.00 20.00 335.00 455.00 10.00 +20 42.00 10.00 40.00 254.00 374.00 10.00 +21 42.00 15.00 10.00 537.00 657.00 10.00 +22 40.00 5.00 10.00 215.00 335.00 10.00 +23 40.00 15.00 40.00 375.00 495.00 10.00 +24 38.00 5.00 30.00 201.00 321.00 10.00 +25 38.00 15.00 10.00 681.00 801.00 10.00 +26 35.00 5.00 20.00 784.00 904.00 10.00 +27 95.00 30.00 30.00 529.00 649.00 10.00 +28 95.00 35.00 20.00 146.00 266.00 10.00 +29 92.00 30.00 10.00 149.00 269.00 10.00 +30 90.00 35.00 10.00 194.00 314.00 10.00 +31 88.00 30.00 10.00 246.00 366.00 10.00 +32 88.00 35.00 20.00 165.00 285.00 10.00 +33 87.00 30.00 10.00 621.00 741.00 10.00 +34 85.00 25.00 10.00 80.00 200.00 10.00 +35 85.00 35.00 30.00 487.00 607.00 10.00 +36 67.00 85.00 20.00 657.00 777.00 10.00 +37 65.00 85.00 40.00 43.00 163.00 10.00 +38 65.00 82.00 10.00 557.00 677.00 10.00 +39 62.00 80.00 30.00 278.00 398.00 10.00 +40 60.00 80.00 10.00 64.00 184.00 10.00 +41 60.00 85.00 30.00 329.00 449.00 10.00 +42 58.00 75.00 20.00 376.00 496.00 10.00 +43 55.00 80.00 10.00 33.00 153.00 10.00 +44 55.00 85.00 20.00 574.00 694.00 10.00 +45 55.00 82.00 10.00 217.00 337.00 10.00 +46 20.00 82.00 10.00 37.00 157.00 10.00 +47 18.00 80.00 10.00 489.00 609.00 10.00 +48 2.00 45.00 10.00 105.00 225.00 10.00 +49 42.00 5.00 10.00 732.00 852.00 10.00 +50 42.00 12.00 10.00 440.00 560.00 10.00 +51 72.00 35.00 30.00 507.00 627.00 10.00 +52 55.00 20.00 19.00 326.00 446.00 10.00 +53 25.00 30.00 3.00 175.00 295.00 10.00 +54 20.00 50.00 5.00 375.00 495.00 10.00 +55 55.00 60.00 16.00 601.00 721.00 10.00 +56 30.00 60.00 16.00 599.00 719.00 10.00 +57 50.00 35.00 19.00 557.00 677.00 10.00 +58 30.00 25.00 23.00 397.00 517.00 10.00 +59 15.00 10.00 20.00 782.00 902.00 10.00 +60 10.00 20.00 19.00 42.00 162.00 10.00 +61 15.00 60.00 17.00 694.00 814.00 10.00 +62 45.00 65.00 9.00 258.00 378.00 10.00 +63 65.00 35.00 3.00 167.00 287.00 10.00 +64 65.00 20.00 6.00 39.00 159.00 10.00 +65 45.00 30.00 17.00 191.00 311.00 10.00 +66 35.00 40.00 16.00 11.00 131.00 10.00 +67 41.00 37.00 16.00 566.00 686.00 10.00 +68 64.00 42.00 9.00 268.00 388.00 10.00 +69 40.00 60.00 21.00 612.00 732.00 10.00 +70 31.00 52.00 27.00 157.00 277.00 10.00 +71 35.00 69.00 23.00 810.00 930.00 10.00 +72 65.00 55.00 14.00 241.00 361.00 10.00 +73 63.00 65.00 8.00 60.00 180.00 10.00 +74 2.00 60.00 5.00 286.00 406.00 10.00 +75 20.00 20.00 8.00 645.00 765.00 10.00 +76 5.00 5.00 16.00 232.00 352.00 10.00 +77 60.00 12.00 31.00 268.00 388.00 10.00 +78 23.00 3.00 7.00 764.00 884.00 10.00 +79 8.00 56.00 27.00 365.00 485.00 10.00 +80 6.00 68.00 30.00 352.00 472.00 10.00 +81 47.00 47.00 13.00 822.00 942.00 10.00 +82 49.00 58.00 10.00 355.00 475.00 10.00 +83 27.00 43.00 9.00 152.00 272.00 10.00 +84 37.00 31.00 14.00 105.00 225.00 10.00 +85 57.00 29.00 18.00 395.00 515.00 10.00 +86 63.00 23.00 2.00 344.00 464.00 10.00 +87 21.00 24.00 28.00 349.00 469.00 10.00 +88 12.00 24.00 13.00 359.00 479.00 10.00 +89 24.00 58.00 19.00 260.00 380.00 10.00 +90 67.00 5.00 25.00 713.00 833.00 10.00 +91 37.00 47.00 6.00 359.00 479.00 10.00 +92 49.00 42.00 13.00 719.00 839.00 10.00 +93 53.00 43.00 14.00 14.00 134.00 10.00 +94 61.00 52.00 3.00 808.00 928.00 10.00 +95 57.00 48.00 23.00 392.00 512.00 10.00 +96 56.00 37.00 6.00 100.00 220.00 10.00 +97 55.00 54.00 26.00 562.00 682.00 10.00 +98 4.00 18.00 35.00 547.00 667.00 10.00 +99 26.00 52.00 9.00 172.00 292.00 10.00 +100 26.00 35.00 15.00 308.00 428.00 10.00 +101 31.00 67.00 3.00 810.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc202.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc202.dat new file mode 100644 index 000000000..24ae5425f --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc202.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 0.00 911.00 10.00 +3 22.00 75.00 30.00 0.00 919.00 10.00 +4 22.00 85.00 10.00 0.00 910.00 10.00 +5 20.00 80.00 40.00 644.00 764.00 10.00 +6 20.00 85.00 20.00 0.00 909.00 10.00 +7 18.00 75.00 20.00 388.00 508.00 10.00 +8 15.00 75.00 20.00 0.00 914.00 10.00 +9 15.00 80.00 10.00 367.00 487.00 10.00 +10 10.00 35.00 20.00 371.00 491.00 10.00 +11 10.00 40.00 30.00 519.00 639.00 10.00 +12 8.00 40.00 40.00 195.00 315.00 10.00 +13 8.00 45.00 20.00 0.00 917.00 10.00 +14 5.00 35.00 10.00 653.00 773.00 10.00 +15 5.00 45.00 10.00 35.00 155.00 10.00 +16 2.00 40.00 20.00 174.00 294.00 10.00 +17 0.00 40.00 20.00 255.00 375.00 10.00 +18 0.00 45.00 20.00 703.00 823.00 10.00 +19 44.00 5.00 20.00 335.00 455.00 10.00 +20 42.00 10.00 40.00 254.00 374.00 10.00 +21 42.00 15.00 10.00 537.00 657.00 10.00 +22 40.00 5.00 10.00 0.00 905.00 10.00 +23 40.00 15.00 40.00 375.00 495.00 10.00 +24 38.00 5.00 30.00 201.00 321.00 10.00 +25 38.00 15.00 10.00 681.00 801.00 10.00 +26 35.00 5.00 20.00 784.00 904.00 10.00 +27 95.00 30.00 30.00 0.00 891.00 10.00 +28 95.00 35.00 20.00 146.00 266.00 10.00 +29 92.00 30.00 10.00 149.00 269.00 10.00 +30 90.00 35.00 10.00 194.00 314.00 10.00 +31 88.00 30.00 10.00 246.00 366.00 10.00 +32 88.00 35.00 20.00 0.00 899.00 10.00 +33 87.00 30.00 10.00 621.00 741.00 10.00 +34 85.00 25.00 10.00 80.00 200.00 10.00 +35 85.00 35.00 30.00 0.00 902.00 10.00 +36 67.00 85.00 20.00 657.00 777.00 10.00 +37 65.00 85.00 40.00 43.00 163.00 10.00 +38 65.00 82.00 10.00 0.00 909.00 10.00 +39 62.00 80.00 30.00 278.00 398.00 10.00 +40 60.00 80.00 10.00 64.00 184.00 10.00 +41 60.00 85.00 30.00 329.00 449.00 10.00 +42 58.00 75.00 20.00 376.00 496.00 10.00 +43 55.00 80.00 10.00 33.00 153.00 10.00 +44 55.00 85.00 20.00 574.00 694.00 10.00 +45 55.00 82.00 10.00 217.00 337.00 10.00 +46 20.00 82.00 10.00 37.00 157.00 10.00 +47 18.00 80.00 10.00 489.00 609.00 10.00 +48 2.00 45.00 10.00 105.00 225.00 10.00 +49 42.00 5.00 10.00 0.00 904.00 10.00 +50 42.00 12.00 10.00 440.00 560.00 10.00 +51 72.00 35.00 30.00 0.00 914.00 10.00 +52 55.00 20.00 19.00 326.00 446.00 10.00 +53 25.00 30.00 3.00 0.00 925.00 10.00 +54 20.00 50.00 5.00 375.00 495.00 10.00 +55 55.00 60.00 16.00 601.00 721.00 10.00 +56 30.00 60.00 16.00 599.00 719.00 10.00 +57 50.00 35.00 19.00 557.00 677.00 10.00 +58 30.00 25.00 23.00 397.00 517.00 10.00 +59 15.00 10.00 20.00 782.00 902.00 10.00 +60 10.00 20.00 19.00 0.00 907.00 10.00 +61 15.00 60.00 17.00 694.00 814.00 10.00 +62 45.00 65.00 9.00 258.00 378.00 10.00 +63 65.00 35.00 3.00 167.00 287.00 10.00 +64 65.00 20.00 6.00 39.00 159.00 10.00 +65 45.00 30.00 17.00 191.00 311.00 10.00 +66 35.00 40.00 16.00 11.00 131.00 10.00 +67 41.00 37.00 16.00 566.00 686.00 10.00 +68 64.00 42.00 9.00 268.00 388.00 10.00 +69 40.00 60.00 21.00 612.00 732.00 10.00 +70 31.00 52.00 27.00 157.00 277.00 10.00 +71 35.00 69.00 23.00 810.00 930.00 10.00 +72 65.00 55.00 14.00 241.00 361.00 10.00 +73 63.00 65.00 8.00 0.00 922.00 10.00 +74 2.00 60.00 5.00 286.00 406.00 10.00 +75 20.00 20.00 8.00 645.00 765.00 10.00 +76 5.00 5.00 16.00 0.00 892.00 10.00 +77 60.00 12.00 31.00 268.00 388.00 10.00 +78 23.00 3.00 7.00 764.00 884.00 10.00 +79 8.00 56.00 27.00 365.00 485.00 10.00 +80 6.00 68.00 30.00 352.00 472.00 10.00 +81 47.00 47.00 13.00 822.00 942.00 10.00 +82 49.00 58.00 10.00 355.00 475.00 10.00 +83 27.00 43.00 9.00 0.00 935.00 10.00 +84 37.00 31.00 14.00 0.00 930.00 10.00 +85 57.00 29.00 18.00 395.00 515.00 10.00 +86 63.00 23.00 2.00 0.00 914.00 10.00 +87 21.00 24.00 28.00 349.00 469.00 10.00 +88 12.00 24.00 13.00 359.00 479.00 10.00 +89 24.00 58.00 19.00 260.00 380.00 10.00 +90 67.00 5.00 25.00 713.00 833.00 10.00 +91 37.00 47.00 6.00 359.00 479.00 10.00 +92 49.00 42.00 13.00 0.00 937.00 10.00 +93 53.00 43.00 14.00 14.00 134.00 10.00 +94 61.00 52.00 3.00 808.00 928.00 10.00 +95 57.00 48.00 23.00 0.00 932.00 10.00 +96 56.00 37.00 6.00 0.00 929.00 10.00 +97 55.00 54.00 26.00 0.00 934.00 10.00 +98 4.00 18.00 35.00 547.00 667.00 10.00 +99 26.00 52.00 9.00 0.00 935.00 10.00 +100 26.00 35.00 15.00 308.00 428.00 10.00 +101 31.00 67.00 3.00 810.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc203.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc203.dat new file mode 100644 index 000000000..c17a9d7f6 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc203.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 0.00 911.00 10.00 +3 22.00 75.00 30.00 0.00 919.00 10.00 +4 22.00 85.00 10.00 0.00 910.00 10.00 +5 20.00 80.00 40.00 644.00 764.00 10.00 +6 20.00 85.00 20.00 0.00 909.00 10.00 +7 18.00 75.00 20.00 388.00 508.00 10.00 +8 15.00 75.00 20.00 0.00 914.00 10.00 +9 15.00 80.00 10.00 367.00 487.00 10.00 +10 10.00 35.00 20.00 371.00 491.00 10.00 +11 10.00 40.00 30.00 519.00 639.00 10.00 +12 8.00 40.00 40.00 195.00 315.00 10.00 +13 8.00 45.00 20.00 0.00 917.00 10.00 +14 5.00 35.00 10.00 653.00 773.00 10.00 +15 5.00 45.00 10.00 0.00 914.00 10.00 +16 2.00 40.00 20.00 174.00 294.00 10.00 +17 0.00 40.00 20.00 0.00 908.00 10.00 +18 0.00 45.00 20.00 703.00 823.00 10.00 +19 44.00 5.00 20.00 0.00 904.00 10.00 +20 42.00 10.00 40.00 0.00 909.00 10.00 +21 42.00 15.00 10.00 0.00 914.00 10.00 +22 40.00 5.00 10.00 0.00 905.00 10.00 +23 40.00 15.00 40.00 375.00 495.00 10.00 +24 38.00 5.00 30.00 201.00 321.00 10.00 +25 38.00 15.00 10.00 0.00 914.00 10.00 +26 35.00 5.00 20.00 784.00 904.00 10.00 +27 95.00 30.00 30.00 0.00 891.00 10.00 +28 95.00 35.00 20.00 146.00 266.00 10.00 +29 92.00 30.00 10.00 0.00 894.00 10.00 +30 90.00 35.00 10.00 0.00 897.00 10.00 +31 88.00 30.00 10.00 246.00 366.00 10.00 +32 88.00 35.00 20.00 0.00 899.00 10.00 +33 87.00 30.00 10.00 0.00 898.00 10.00 +34 85.00 25.00 10.00 80.00 200.00 10.00 +35 85.00 35.00 30.00 0.00 902.00 10.00 +36 67.00 85.00 20.00 657.00 777.00 10.00 +37 65.00 85.00 40.00 43.00 163.00 10.00 +38 65.00 82.00 10.00 0.00 909.00 10.00 +39 62.00 80.00 30.00 278.00 398.00 10.00 +40 60.00 80.00 10.00 64.00 184.00 10.00 +41 60.00 85.00 30.00 329.00 449.00 10.00 +42 58.00 75.00 20.00 376.00 496.00 10.00 +43 55.00 80.00 10.00 33.00 153.00 10.00 +44 55.00 85.00 20.00 0.00 911.00 10.00 +45 55.00 82.00 10.00 217.00 337.00 10.00 +46 20.00 82.00 10.00 37.00 157.00 10.00 +47 18.00 80.00 10.00 0.00 912.00 10.00 +48 2.00 45.00 10.00 0.00 911.00 10.00 +49 42.00 5.00 10.00 0.00 904.00 10.00 +50 42.00 12.00 10.00 440.00 560.00 10.00 +51 72.00 35.00 30.00 0.00 914.00 10.00 +52 55.00 20.00 19.00 0.00 916.00 10.00 +53 25.00 30.00 3.00 0.00 925.00 10.00 +54 20.00 50.00 5.00 375.00 495.00 10.00 +55 55.00 60.00 16.00 0.00 931.00 10.00 +56 30.00 60.00 16.00 599.00 719.00 10.00 +57 50.00 35.00 19.00 557.00 677.00 10.00 +58 30.00 25.00 23.00 0.00 923.00 10.00 +59 15.00 10.00 20.00 782.00 902.00 10.00 +60 10.00 20.00 19.00 0.00 907.00 10.00 +61 15.00 60.00 17.00 0.00 923.00 10.00 +62 45.00 65.00 9.00 0.00 934.00 10.00 +63 65.00 35.00 3.00 167.00 287.00 10.00 +64 65.00 20.00 6.00 0.00 910.00 10.00 +65 45.00 30.00 17.00 191.00 311.00 10.00 +66 35.00 40.00 16.00 11.00 131.00 10.00 +67 41.00 37.00 16.00 566.00 686.00 10.00 +68 64.00 42.00 9.00 268.00 388.00 10.00 +69 40.00 60.00 21.00 612.00 732.00 10.00 +70 31.00 52.00 27.00 157.00 277.00 10.00 +71 35.00 69.00 23.00 810.00 930.00 10.00 +72 65.00 55.00 14.00 0.00 924.00 10.00 +73 63.00 65.00 8.00 0.00 922.00 10.00 +74 2.00 60.00 5.00 0.00 910.00 10.00 +75 20.00 20.00 8.00 645.00 765.00 10.00 +76 5.00 5.00 16.00 0.00 892.00 10.00 +77 60.00 12.00 31.00 268.00 388.00 10.00 +78 23.00 3.00 7.00 764.00 884.00 10.00 +79 8.00 56.00 27.00 365.00 485.00 10.00 +80 6.00 68.00 30.00 352.00 472.00 10.00 +81 47.00 47.00 13.00 822.00 942.00 10.00 +82 49.00 58.00 10.00 0.00 937.00 10.00 +83 27.00 43.00 9.00 0.00 935.00 10.00 +84 37.00 31.00 14.00 0.00 930.00 10.00 +85 57.00 29.00 18.00 395.00 515.00 10.00 +86 63.00 23.00 2.00 0.00 914.00 10.00 +87 21.00 24.00 28.00 0.00 917.00 10.00 +88 12.00 24.00 13.00 359.00 479.00 10.00 +89 24.00 58.00 19.00 260.00 380.00 10.00 +90 67.00 5.00 25.00 0.00 897.00 10.00 +91 37.00 47.00 6.00 0.00 945.00 10.00 +92 49.00 42.00 13.00 0.00 937.00 10.00 +93 53.00 43.00 14.00 14.00 134.00 10.00 +94 61.00 52.00 3.00 808.00 928.00 10.00 +95 57.00 48.00 23.00 0.00 932.00 10.00 +96 56.00 37.00 6.00 0.00 929.00 10.00 +97 55.00 54.00 26.00 0.00 934.00 10.00 +98 4.00 18.00 35.00 0.00 901.00 10.00 +99 26.00 52.00 9.00 0.00 935.00 10.00 +100 26.00 35.00 15.00 308.00 428.00 10.00 +101 31.00 67.00 3.00 810.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc204.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc204.dat new file mode 100644 index 000000000..9579eec89 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc204.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 0.00 911.00 10.00 +3 22.00 75.00 30.00 0.00 919.00 10.00 +4 22.00 85.00 10.00 0.00 910.00 10.00 +5 20.00 80.00 40.00 644.00 764.00 10.00 +6 20.00 85.00 20.00 0.00 909.00 10.00 +7 18.00 75.00 20.00 0.00 916.00 10.00 +8 15.00 75.00 20.00 0.00 914.00 10.00 +9 15.00 80.00 10.00 367.00 487.00 10.00 +10 10.00 35.00 20.00 371.00 491.00 10.00 +11 10.00 40.00 30.00 0.00 918.00 10.00 +12 8.00 40.00 40.00 195.00 315.00 10.00 +13 8.00 45.00 20.00 0.00 917.00 10.00 +14 5.00 35.00 10.00 653.00 773.00 10.00 +15 5.00 45.00 10.00 0.00 914.00 10.00 +16 2.00 40.00 20.00 174.00 294.00 10.00 +17 0.00 40.00 20.00 0.00 908.00 10.00 +18 0.00 45.00 20.00 0.00 909.00 10.00 +19 44.00 5.00 20.00 0.00 904.00 10.00 +20 42.00 10.00 40.00 0.00 909.00 10.00 +21 42.00 15.00 10.00 0.00 914.00 10.00 +22 40.00 5.00 10.00 0.00 905.00 10.00 +23 40.00 15.00 40.00 0.00 915.00 10.00 +24 38.00 5.00 30.00 201.00 321.00 10.00 +25 38.00 15.00 10.00 0.00 914.00 10.00 +26 35.00 5.00 20.00 784.00 904.00 10.00 +27 95.00 30.00 30.00 0.00 891.00 10.00 +28 95.00 35.00 20.00 0.00 892.00 10.00 +29 92.00 30.00 10.00 0.00 894.00 10.00 +30 90.00 35.00 10.00 0.00 897.00 10.00 +31 88.00 30.00 10.00 0.00 898.00 10.00 +32 88.00 35.00 20.00 0.00 899.00 10.00 +33 87.00 30.00 10.00 0.00 898.00 10.00 +34 85.00 25.00 10.00 0.00 898.00 10.00 +35 85.00 35.00 30.00 0.00 902.00 10.00 +36 67.00 85.00 20.00 0.00 905.00 10.00 +37 65.00 85.00 40.00 0.00 906.00 10.00 +38 65.00 82.00 10.00 0.00 909.00 10.00 +39 62.00 80.00 30.00 278.00 398.00 10.00 +40 60.00 80.00 10.00 0.00 913.00 10.00 +41 60.00 85.00 30.00 0.00 909.00 10.00 +42 58.00 75.00 20.00 0.00 919.00 10.00 +43 55.00 80.00 10.00 0.00 916.00 10.00 +44 55.00 85.00 20.00 0.00 911.00 10.00 +45 55.00 82.00 10.00 217.00 337.00 10.00 +46 20.00 82.00 10.00 0.00 912.00 10.00 +47 18.00 80.00 10.00 0.00 912.00 10.00 +48 2.00 45.00 10.00 0.00 911.00 10.00 +49 42.00 5.00 10.00 0.00 904.00 10.00 +50 42.00 12.00 10.00 0.00 911.00 10.00 +51 72.00 35.00 30.00 0.00 914.00 10.00 +52 55.00 20.00 19.00 0.00 916.00 10.00 +53 25.00 30.00 3.00 0.00 925.00 10.00 +54 20.00 50.00 5.00 375.00 495.00 10.00 +55 55.00 60.00 16.00 0.00 931.00 10.00 +56 30.00 60.00 16.00 599.00 719.00 10.00 +57 50.00 35.00 19.00 0.00 931.00 10.00 +58 30.00 25.00 23.00 0.00 923.00 10.00 +59 15.00 10.00 20.00 782.00 902.00 10.00 +60 10.00 20.00 19.00 0.00 907.00 10.00 +61 15.00 60.00 17.00 0.00 923.00 10.00 +62 45.00 65.00 9.00 0.00 934.00 10.00 +63 65.00 35.00 3.00 167.00 287.00 10.00 +64 65.00 20.00 6.00 0.00 910.00 10.00 +65 45.00 30.00 17.00 0.00 929.00 10.00 +66 35.00 40.00 16.00 0.00 938.00 10.00 +67 41.00 37.00 16.00 0.00 936.00 10.00 +68 64.00 42.00 9.00 268.00 388.00 10.00 +69 40.00 60.00 21.00 0.00 940.00 10.00 +70 31.00 52.00 27.00 157.00 277.00 10.00 +71 35.00 69.00 23.00 0.00 930.00 10.00 +72 65.00 55.00 14.00 0.00 924.00 10.00 +73 63.00 65.00 8.00 0.00 922.00 10.00 +74 2.00 60.00 5.00 0.00 910.00 10.00 +75 20.00 20.00 8.00 645.00 765.00 10.00 +76 5.00 5.00 16.00 0.00 892.00 10.00 +77 60.00 12.00 31.00 268.00 388.00 10.00 +78 23.00 3.00 7.00 764.00 884.00 10.00 +79 8.00 56.00 27.00 0.00 917.00 10.00 +80 6.00 68.00 30.00 352.00 472.00 10.00 +81 47.00 47.00 13.00 0.00 942.00 10.00 +82 49.00 58.00 10.00 0.00 937.00 10.00 +83 27.00 43.00 9.00 0.00 935.00 10.00 +84 37.00 31.00 14.00 0.00 930.00 10.00 +85 57.00 29.00 18.00 395.00 515.00 10.00 +86 63.00 23.00 2.00 0.00 914.00 10.00 +87 21.00 24.00 28.00 0.00 917.00 10.00 +88 12.00 24.00 13.00 359.00 479.00 10.00 +89 24.00 58.00 19.00 0.00 932.00 10.00 +90 67.00 5.00 25.00 0.00 897.00 10.00 +91 37.00 47.00 6.00 0.00 945.00 10.00 +92 49.00 42.00 13.00 0.00 937.00 10.00 +93 53.00 43.00 14.00 14.00 134.00 10.00 +94 61.00 52.00 3.00 0.00 928.00 10.00 +95 57.00 48.00 23.00 0.00 932.00 10.00 +96 56.00 37.00 6.00 0.00 929.00 10.00 +97 55.00 54.00 26.00 0.00 934.00 10.00 +98 4.00 18.00 35.00 0.00 901.00 10.00 +99 26.00 52.00 9.00 0.00 935.00 10.00 +100 26.00 35.00 15.00 308.00 428.00 10.00 +101 31.00 67.00 3.00 810.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc205.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc205.dat new file mode 100644 index 000000000..6a06bc56c --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc205.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 431.00 911.00 10.00 +3 22.00 75.00 30.00 30.00 510.00 10.00 +4 22.00 85.00 10.00 291.00 771.00 10.00 +5 20.00 80.00 40.00 674.00 734.00 10.00 +6 20.00 85.00 20.00 40.00 520.00 10.00 +7 18.00 75.00 20.00 393.00 502.00 10.00 +8 15.00 75.00 20.00 120.00 600.00 10.00 +9 15.00 80.00 10.00 397.00 457.00 10.00 +10 10.00 35.00 20.00 401.00 461.00 10.00 +11 10.00 40.00 30.00 535.00 622.00 10.00 +12 8.00 40.00 40.00 225.00 285.00 10.00 +13 8.00 45.00 20.00 43.00 523.00 10.00 +14 5.00 35.00 10.00 683.00 743.00 10.00 +15 5.00 45.00 10.00 35.00 366.00 10.00 +16 2.00 40.00 20.00 204.00 264.00 10.00 +17 0.00 40.00 20.00 204.00 425.00 10.00 +18 0.00 45.00 20.00 698.00 827.00 10.00 +19 44.00 5.00 20.00 306.00 483.00 10.00 +20 42.00 10.00 40.00 199.00 428.00 10.00 +21 42.00 15.00 10.00 494.00 699.00 10.00 +22 40.00 5.00 10.00 45.00 525.00 10.00 +23 40.00 15.00 40.00 383.00 486.00 10.00 +24 38.00 5.00 30.00 231.00 291.00 10.00 +25 38.00 15.00 10.00 609.00 872.00 10.00 +26 35.00 5.00 20.00 821.00 881.00 10.00 +27 95.00 30.00 30.00 349.00 829.00 10.00 +28 95.00 35.00 20.00 138.00 273.00 10.00 +29 92.00 30.00 10.00 78.00 339.00 10.00 +30 90.00 35.00 10.00 132.00 375.00 10.00 +31 88.00 30.00 10.00 252.00 359.00 10.00 +32 88.00 35.00 20.00 50.00 530.00 10.00 +33 87.00 30.00 10.00 562.00 799.00 10.00 +34 85.00 25.00 10.00 71.00 208.00 10.00 +35 85.00 35.00 30.00 307.00 787.00 10.00 +36 67.00 85.00 20.00 655.00 778.00 10.00 +37 65.00 85.00 40.00 43.00 186.00 10.00 +38 65.00 82.00 10.00 377.00 857.00 10.00 +39 62.00 80.00 30.00 308.00 368.00 10.00 +40 60.00 80.00 10.00 46.00 201.00 10.00 +41 60.00 85.00 30.00 339.00 438.00 10.00 +42 58.00 75.00 20.00 377.00 494.00 10.00 +43 55.00 80.00 10.00 33.00 166.00 10.00 +44 55.00 85.00 20.00 531.00 736.00 10.00 +45 55.00 82.00 10.00 247.00 307.00 10.00 +46 20.00 82.00 10.00 37.00 177.00 10.00 +47 18.00 80.00 10.00 432.00 665.00 10.00 +48 2.00 45.00 10.00 38.00 322.00 10.00 +49 42.00 5.00 10.00 424.00 904.00 10.00 +50 42.00 12.00 10.00 460.00 539.00 10.00 +51 72.00 35.00 30.00 327.00 807.00 10.00 +52 55.00 20.00 19.00 273.00 498.00 10.00 +53 25.00 30.00 3.00 25.00 505.00 10.00 +54 20.00 50.00 5.00 405.00 465.00 10.00 +55 55.00 60.00 16.00 554.00 767.00 10.00 +56 30.00 60.00 16.00 629.00 689.00 10.00 +57 50.00 35.00 19.00 560.00 673.00 10.00 +58 30.00 25.00 23.00 342.00 571.00 10.00 +59 15.00 10.00 20.00 842.00 902.00 10.00 +60 10.00 20.00 19.00 42.00 522.00 10.00 +61 15.00 60.00 17.00 623.00 884.00 10.00 +62 45.00 65.00 9.00 214.00 421.00 10.00 +63 65.00 35.00 3.00 197.00 257.00 10.00 +64 65.00 20.00 6.00 39.00 316.00 10.00 +65 45.00 30.00 17.00 191.00 310.00 10.00 +66 35.00 40.00 16.00 11.00 140.00 10.00 +67 41.00 37.00 16.00 570.00 681.00 10.00 +68 64.00 42.00 9.00 298.00 358.00 10.00 +69 40.00 60.00 21.00 613.00 730.00 10.00 +70 31.00 52.00 27.00 187.00 247.00 10.00 +71 35.00 69.00 23.00 780.00 930.00 10.00 +72 65.00 55.00 14.00 191.00 410.00 10.00 +73 63.00 65.00 8.00 27.00 507.00 10.00 +74 2.00 60.00 5.00 240.00 451.00 10.00 +75 20.00 20.00 8.00 675.00 735.00 10.00 +76 5.00 5.00 16.00 57.00 537.00 10.00 +77 60.00 12.00 31.00 298.00 358.00 10.00 +78 23.00 3.00 7.00 794.00 854.00 10.00 +79 8.00 56.00 27.00 366.00 483.00 10.00 +80 6.00 68.00 30.00 382.00 442.00 10.00 +81 47.00 47.00 13.00 817.00 942.00 10.00 +82 49.00 58.00 10.00 332.00 497.00 10.00 +83 27.00 43.00 9.00 14.00 494.00 10.00 +84 37.00 31.00 14.00 19.00 499.00 10.00 +85 57.00 29.00 18.00 425.00 485.00 10.00 +86 63.00 23.00 2.00 164.00 644.00 10.00 +87 21.00 24.00 28.00 310.00 507.00 10.00 +88 12.00 24.00 13.00 389.00 449.00 10.00 +89 24.00 58.00 19.00 262.00 377.00 10.00 +90 67.00 5.00 25.00 611.00 897.00 10.00 +91 37.00 47.00 6.00 311.00 526.00 10.00 +92 49.00 42.00 13.00 457.00 937.00 10.00 +93 53.00 43.00 14.00 14.00 74.00 10.00 +94 61.00 52.00 3.00 789.00 928.00 10.00 +95 57.00 48.00 23.00 212.00 692.00 10.00 +96 56.00 37.00 6.00 20.00 500.00 10.00 +97 55.00 54.00 26.00 382.00 862.00 10.00 +98 4.00 18.00 35.00 516.00 697.00 10.00 +99 26.00 52.00 9.00 14.00 494.00 10.00 +100 26.00 35.00 15.00 338.00 398.00 10.00 +101 31.00 67.00 3.00 870.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc206.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc206.dat new file mode 100644 index 000000000..1a193f43d --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc206.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 613.00 853.00 10.00 +3 22.00 75.00 30.00 92.00 332.00 10.00 +4 22.00 85.00 10.00 411.00 651.00 10.00 +5 20.00 80.00 40.00 584.00 824.00 10.00 +6 20.00 85.00 20.00 40.00 280.00 10.00 +7 18.00 75.00 20.00 328.00 568.00 10.00 +8 15.00 75.00 20.00 240.00 480.00 10.00 +9 15.00 80.00 10.00 307.00 547.00 10.00 +10 10.00 35.00 20.00 311.00 551.00 10.00 +11 10.00 40.00 30.00 459.00 699.00 10.00 +12 8.00 40.00 40.00 135.00 375.00 10.00 +13 8.00 45.00 20.00 163.00 403.00 10.00 +14 5.00 35.00 10.00 593.00 833.00 10.00 +15 5.00 45.00 10.00 35.00 275.00 10.00 +16 2.00 40.00 20.00 114.00 354.00 10.00 +17 0.00 40.00 20.00 195.00 435.00 10.00 +18 0.00 45.00 20.00 643.00 883.00 10.00 +19 44.00 5.00 20.00 275.00 515.00 10.00 +20 42.00 10.00 40.00 194.00 434.00 10.00 +21 42.00 15.00 10.00 477.00 717.00 10.00 +22 40.00 5.00 10.00 155.00 395.00 10.00 +23 40.00 15.00 40.00 315.00 555.00 10.00 +24 38.00 5.00 30.00 141.00 381.00 10.00 +25 38.00 15.00 10.00 621.00 861.00 10.00 +26 35.00 5.00 20.00 664.00 904.00 10.00 +27 95.00 30.00 30.00 469.00 709.00 10.00 +28 95.00 35.00 20.00 86.00 326.00 10.00 +29 92.00 30.00 10.00 89.00 329.00 10.00 +30 90.00 35.00 10.00 134.00 374.00 10.00 +31 88.00 30.00 10.00 186.00 426.00 10.00 +32 88.00 35.00 20.00 105.00 345.00 10.00 +33 87.00 30.00 10.00 561.00 801.00 10.00 +34 85.00 25.00 10.00 51.00 291.00 10.00 +35 85.00 35.00 30.00 427.00 667.00 10.00 +36 67.00 85.00 20.00 597.00 837.00 10.00 +37 65.00 85.00 40.00 43.00 283.00 10.00 +38 65.00 82.00 10.00 497.00 737.00 10.00 +39 62.00 80.00 30.00 218.00 458.00 10.00 +40 60.00 80.00 10.00 36.00 276.00 10.00 +41 60.00 85.00 30.00 269.00 509.00 10.00 +42 58.00 75.00 20.00 316.00 556.00 10.00 +43 55.00 80.00 10.00 33.00 273.00 10.00 +44 55.00 85.00 20.00 514.00 754.00 10.00 +45 55.00 82.00 10.00 157.00 397.00 10.00 +46 20.00 82.00 10.00 37.00 277.00 10.00 +47 18.00 80.00 10.00 429.00 669.00 10.00 +48 2.00 45.00 10.00 45.00 285.00 10.00 +49 42.00 5.00 10.00 664.00 904.00 10.00 +50 42.00 12.00 10.00 380.00 620.00 10.00 +51 72.00 35.00 30.00 447.00 687.00 10.00 +52 55.00 20.00 19.00 266.00 506.00 10.00 +53 25.00 30.00 3.00 115.00 355.00 10.00 +54 20.00 50.00 5.00 315.00 555.00 10.00 +55 55.00 60.00 16.00 541.00 781.00 10.00 +56 30.00 60.00 16.00 539.00 779.00 10.00 +57 50.00 35.00 19.00 497.00 737.00 10.00 +58 30.00 25.00 23.00 337.00 577.00 10.00 +59 15.00 10.00 20.00 662.00 902.00 10.00 +60 10.00 20.00 19.00 42.00 282.00 10.00 +61 15.00 60.00 17.00 634.00 874.00 10.00 +62 45.00 65.00 9.00 198.00 438.00 10.00 +63 65.00 35.00 3.00 107.00 347.00 10.00 +64 65.00 20.00 6.00 39.00 279.00 10.00 +65 45.00 30.00 17.00 131.00 371.00 10.00 +66 35.00 40.00 16.00 11.00 251.00 10.00 +67 41.00 37.00 16.00 506.00 746.00 10.00 +68 64.00 42.00 9.00 208.00 448.00 10.00 +69 40.00 60.00 21.00 552.00 792.00 10.00 +70 31.00 52.00 27.00 97.00 337.00 10.00 +71 35.00 69.00 23.00 690.00 930.00 10.00 +72 65.00 55.00 14.00 181.00 421.00 10.00 +73 63.00 65.00 8.00 27.00 267.00 10.00 +74 2.00 60.00 5.00 226.00 466.00 10.00 +75 20.00 20.00 8.00 585.00 825.00 10.00 +76 5.00 5.00 16.00 172.00 412.00 10.00 +77 60.00 12.00 31.00 208.00 448.00 10.00 +78 23.00 3.00 7.00 660.00 900.00 10.00 +79 8.00 56.00 27.00 305.00 545.00 10.00 +80 6.00 68.00 30.00 292.00 532.00 10.00 +81 47.00 47.00 13.00 702.00 942.00 10.00 +82 49.00 58.00 10.00 295.00 535.00 10.00 +83 27.00 43.00 9.00 92.00 332.00 10.00 +84 37.00 31.00 14.00 45.00 285.00 10.00 +85 57.00 29.00 18.00 335.00 575.00 10.00 +86 63.00 23.00 2.00 284.00 524.00 10.00 +87 21.00 24.00 28.00 289.00 529.00 10.00 +88 12.00 24.00 13.00 299.00 539.00 10.00 +89 24.00 58.00 19.00 200.00 440.00 10.00 +90 67.00 5.00 25.00 653.00 893.00 10.00 +91 37.00 47.00 6.00 299.00 539.00 10.00 +92 49.00 42.00 13.00 659.00 899.00 10.00 +93 53.00 43.00 14.00 14.00 254.00 10.00 +94 61.00 52.00 3.00 688.00 928.00 10.00 +95 57.00 48.00 23.00 332.00 572.00 10.00 +96 56.00 37.00 6.00 40.00 280.00 10.00 +97 55.00 54.00 26.00 502.00 742.00 10.00 +98 4.00 18.00 35.00 487.00 727.00 10.00 +99 26.00 52.00 9.00 112.00 352.00 10.00 +100 26.00 35.00 15.00 248.00 488.00 10.00 +101 31.00 67.00 3.00 690.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc207.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc207.dat new file mode 100644 index 000000000..61c74c22c --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc207.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 591.00 874.00 10.00 +3 22.00 75.00 30.00 73.00 350.00 10.00 +4 22.00 85.00 10.00 473.00 588.00 10.00 +5 20.00 80.00 40.00 418.00 913.00 10.00 +6 20.00 85.00 20.00 40.00 390.00 10.00 +7 18.00 75.00 20.00 249.00 646.00 10.00 +8 15.00 75.00 20.00 281.00 438.00 10.00 +9 15.00 80.00 10.00 272.00 581.00 10.00 +10 10.00 35.00 20.00 236.00 625.00 10.00 +11 10.00 40.00 30.00 470.00 687.00 10.00 +12 8.00 40.00 40.00 33.00 510.00 10.00 +13 8.00 45.00 20.00 166.00 399.00 10.00 +14 5.00 35.00 10.00 359.00 911.00 10.00 +15 5.00 45.00 10.00 35.00 457.00 10.00 +16 2.00 40.00 20.00 39.00 538.00 10.00 +17 0.00 40.00 20.00 214.00 415.00 10.00 +18 0.00 45.00 20.00 359.00 909.00 10.00 +19 44.00 5.00 20.00 338.00 451.00 10.00 +20 42.00 10.00 40.00 205.00 422.00 10.00 +21 42.00 15.00 10.00 511.00 682.00 10.00 +22 40.00 5.00 10.00 158.00 391.00 10.00 +23 40.00 15.00 40.00 263.00 606.00 10.00 +24 38.00 5.00 30.00 45.00 522.00 10.00 +25 38.00 15.00 10.00 598.00 883.00 10.00 +26 35.00 5.00 20.00 348.00 904.00 10.00 +27 95.00 30.00 30.00 509.00 668.00 10.00 +28 95.00 35.00 20.00 57.00 664.00 10.00 +29 92.00 30.00 10.00 68.00 349.00 10.00 +30 90.00 35.00 10.00 131.00 376.00 10.00 +31 88.00 30.00 10.00 114.00 497.00 10.00 +32 88.00 35.00 20.00 102.00 347.00 10.00 +33 87.00 30.00 10.00 564.00 797.00 10.00 +34 85.00 25.00 10.00 51.00 673.00 10.00 +35 85.00 35.00 30.00 462.00 631.00 10.00 +36 67.00 85.00 20.00 396.00 905.00 10.00 +37 65.00 85.00 40.00 43.00 712.00 10.00 +38 65.00 82.00 10.00 530.00 703.00 10.00 +39 62.00 80.00 30.00 131.00 544.00 10.00 +40 60.00 80.00 10.00 36.00 800.00 10.00 +41 60.00 85.00 30.00 233.00 544.00 10.00 +42 58.00 75.00 20.00 207.00 664.00 10.00 +43 55.00 80.00 10.00 33.00 624.00 10.00 +44 55.00 85.00 20.00 549.00 718.00 10.00 +45 55.00 82.00 10.00 62.00 491.00 10.00 +46 20.00 82.00 10.00 37.00 677.00 10.00 +47 18.00 80.00 10.00 435.00 662.00 10.00 +48 2.00 45.00 10.00 38.00 366.00 10.00 +49 42.00 5.00 10.00 636.00 904.00 10.00 +50 42.00 12.00 10.00 423.00 576.00 10.00 +51 72.00 35.00 30.00 471.00 662.00 10.00 +52 55.00 20.00 19.00 281.00 490.00 10.00 +53 25.00 30.00 3.00 109.00 360.00 10.00 +54 20.00 50.00 5.00 284.00 585.00 10.00 +55 55.00 60.00 16.00 568.00 753.00 10.00 +56 30.00 60.00 16.00 421.00 896.00 10.00 +57 50.00 35.00 19.00 404.00 829.00 10.00 +58 30.00 25.00 23.00 347.00 566.00 10.00 +59 15.00 10.00 20.00 380.00 902.00 10.00 +60 10.00 20.00 19.00 42.00 466.00 10.00 +61 15.00 60.00 17.00 613.00 894.00 10.00 +62 45.00 65.00 9.00 230.00 405.00 10.00 +63 65.00 35.00 3.00 29.00 587.00 10.00 +64 65.00 20.00 6.00 39.00 353.00 10.00 +65 45.00 30.00 17.00 20.00 497.00 10.00 +66 35.00 40.00 16.00 11.00 570.00 10.00 +67 41.00 37.00 16.00 423.00 828.00 10.00 +68 64.00 42.00 9.00 112.00 543.00 10.00 +69 40.00 60.00 21.00 441.00 902.00 10.00 +70 31.00 52.00 27.00 9.00 532.00 10.00 +71 35.00 69.00 23.00 211.00 930.00 10.00 +72 65.00 55.00 14.00 201.00 400.00 10.00 +73 63.00 65.00 8.00 27.00 382.00 10.00 +74 2.00 60.00 5.00 255.00 436.00 10.00 +75 20.00 20.00 8.00 427.00 913.00 10.00 +76 5.00 5.00 16.00 183.00 400.00 10.00 +77 60.00 12.00 31.00 162.00 493.00 10.00 +78 23.00 3.00 7.00 360.00 900.00 10.00 +79 8.00 56.00 27.00 195.00 654.00 10.00 +80 6.00 68.00 30.00 258.00 565.00 10.00 +81 47.00 47.00 13.00 426.00 942.00 10.00 +82 49.00 58.00 10.00 369.00 460.00 10.00 +83 27.00 43.00 9.00 85.00 338.00 10.00 +84 37.00 31.00 14.00 19.00 326.00 10.00 +85 57.00 29.00 18.00 304.00 605.00 10.00 +86 63.00 23.00 2.00 318.00 489.00 10.00 +87 21.00 24.00 28.00 332.00 485.00 10.00 +88 12.00 24.00 13.00 365.00 472.00 10.00 +89 24.00 58.00 19.00 100.00 539.00 10.00 +90 67.00 5.00 25.00 565.00 897.00 10.00 +91 37.00 47.00 6.00 324.00 513.00 10.00 +92 49.00 42.00 13.00 651.00 906.00 10.00 +93 53.00 43.00 14.00 14.00 669.00 10.00 +94 61.00 52.00 3.00 298.00 928.00 10.00 +95 57.00 48.00 23.00 385.00 518.00 10.00 +96 56.00 37.00 6.00 20.00 299.00 10.00 +97 55.00 54.00 26.00 538.00 705.00 10.00 +98 4.00 18.00 35.00 546.00 667.00 10.00 +99 26.00 52.00 9.00 109.00 354.00 10.00 +100 26.00 35.00 15.00 170.00 565.00 10.00 +101 31.00 67.00 3.00 262.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc208.dat b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc208.dat new file mode 100644 index 000000000..9f39d8422 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/application/instances/solomon/rc208.dat @@ -0,0 +1,101 @@ +1 40.00 50.00 0.00 0.00 960.00 0.00 +2 25.00 85.00 20.00 388.00 911.00 10.00 +3 22.00 75.00 30.00 30.00 546.00 10.00 +4 22.00 85.00 10.00 353.00 708.00 10.00 +5 20.00 80.00 40.00 425.00 913.00 10.00 +6 20.00 85.00 20.00 40.00 630.00 10.00 +7 18.00 75.00 20.00 228.00 667.00 10.00 +8 15.00 75.00 20.00 161.00 558.00 10.00 +9 15.00 80.00 10.00 229.00 624.00 10.00 +10 10.00 35.00 20.00 213.00 648.00 10.00 +11 10.00 40.00 30.00 404.00 753.00 10.00 +12 8.00 40.00 40.00 33.00 511.00 10.00 +13 8.00 45.00 20.00 46.00 519.00 10.00 +14 5.00 35.00 10.00 395.00 911.00 10.00 +15 5.00 45.00 10.00 35.00 697.00 10.00 +16 2.00 40.00 20.00 39.00 528.00 10.00 +17 0.00 40.00 20.00 94.00 535.00 10.00 +18 0.00 45.00 20.00 394.00 909.00 10.00 +19 44.00 5.00 20.00 218.00 571.00 10.00 +20 42.00 10.00 40.00 85.00 542.00 10.00 +21 42.00 15.00 10.00 391.00 802.00 10.00 +22 40.00 5.00 10.00 45.00 517.00 10.00 +23 40.00 15.00 40.00 229.00 640.00 10.00 +24 38.00 5.00 30.00 45.00 523.00 10.00 +25 38.00 15.00 10.00 389.00 914.00 10.00 +26 35.00 5.00 20.00 386.00 904.00 10.00 +27 95.00 30.00 30.00 389.00 788.00 10.00 +28 95.00 35.00 20.00 57.00 600.00 10.00 +29 92.00 30.00 10.00 55.00 575.00 10.00 +30 90.00 35.00 10.00 52.00 536.00 10.00 +31 88.00 30.00 10.00 90.00 521.00 10.00 +32 88.00 35.00 20.00 50.00 534.00 10.00 +33 87.00 30.00 10.00 425.00 898.00 10.00 +34 85.00 25.00 10.00 51.00 602.00 10.00 +35 85.00 35.00 30.00 342.00 751.00 10.00 +36 67.00 85.00 20.00 410.00 905.00 10.00 +37 65.00 85.00 40.00 43.00 617.00 10.00 +38 65.00 82.00 10.00 410.00 823.00 10.00 +39 62.00 80.00 30.00 114.00 561.00 10.00 +40 60.00 80.00 10.00 36.00 658.00 10.00 +41 60.00 85.00 30.00 191.00 586.00 10.00 +42 58.00 75.00 20.00 201.00 670.00 10.00 +43 55.00 80.00 10.00 33.00 568.00 10.00 +44 55.00 85.00 20.00 429.00 838.00 10.00 +45 55.00 82.00 10.00 49.00 504.00 10.00 +46 20.00 82.00 10.00 37.00 597.00 10.00 +47 18.00 80.00 10.00 315.00 782.00 10.00 +48 2.00 45.00 10.00 38.00 606.00 10.00 +49 42.00 5.00 10.00 396.00 904.00 10.00 +50 42.00 12.00 10.00 341.00 658.00 10.00 +51 72.00 35.00 30.00 351.00 782.00 10.00 +52 55.00 20.00 19.00 161.00 610.00 10.00 +53 25.00 30.00 3.00 25.00 516.00 10.00 +54 20.00 50.00 5.00 239.00 630.00 10.00 +55 55.00 60.00 16.00 448.00 873.00 10.00 +56 30.00 60.00 16.00 420.00 897.00 10.00 +57 50.00 35.00 19.00 390.00 843.00 10.00 +58 30.00 25.00 23.00 227.00 686.00 10.00 +59 15.00 10.00 20.00 401.00 902.00 10.00 +60 10.00 20.00 19.00 42.00 706.00 10.00 +61 15.00 60.00 17.00 401.00 923.00 10.00 +62 45.00 65.00 9.00 110.00 525.00 10.00 +63 65.00 35.00 3.00 29.00 548.00 10.00 +64 65.00 20.00 6.00 39.00 593.00 10.00 +65 45.00 30.00 17.00 20.00 498.00 10.00 +66 35.00 40.00 16.00 11.00 530.00 10.00 +67 41.00 37.00 16.00 404.00 847.00 10.00 +68 64.00 42.00 9.00 100.00 555.00 10.00 +69 40.00 60.00 21.00 436.00 907.00 10.00 +70 31.00 52.00 27.00 9.00 510.00 10.00 +71 35.00 69.00 23.00 330.00 930.00 10.00 +72 65.00 55.00 14.00 81.00 520.00 10.00 +73 63.00 65.00 8.00 27.00 622.00 10.00 +74 2.00 60.00 5.00 135.00 556.00 10.00 +75 20.00 20.00 8.00 430.00 913.00 10.00 +76 5.00 5.00 16.00 63.00 520.00 10.00 +77 60.00 12.00 31.00 125.00 530.00 10.00 +78 23.00 3.00 7.00 390.00 900.00 10.00 +79 8.00 56.00 27.00 190.00 659.00 10.00 +80 6.00 68.00 30.00 215.00 608.00 10.00 +81 47.00 47.00 13.00 444.00 942.00 10.00 +82 49.00 58.00 10.00 249.00 580.00 10.00 +83 27.00 43.00 9.00 14.00 506.00 10.00 +84 37.00 31.00 14.00 19.00 566.00 10.00 +85 57.00 29.00 18.00 259.00 650.00 10.00 +86 63.00 23.00 2.00 198.00 609.00 10.00 +87 21.00 24.00 28.00 212.00 605.00 10.00 +88 12.00 24.00 13.00 272.00 565.00 10.00 +89 24.00 58.00 19.00 90.00 549.00 10.00 +90 67.00 5.00 25.00 325.00 897.00 10.00 +91 37.00 47.00 6.00 204.00 633.00 10.00 +92 49.00 42.00 13.00 442.00 937.00 10.00 +93 53.00 43.00 14.00 14.00 581.00 10.00 +94 61.00 52.00 3.00 373.00 928.00 10.00 +95 57.00 48.00 23.00 265.00 638.00 10.00 +96 56.00 37.00 6.00 20.00 539.00 10.00 +97 55.00 54.00 26.00 418.00 825.00 10.00 +98 4.00 18.00 35.00 426.00 787.00 10.00 +99 26.00 52.00 9.00 14.00 499.00 10.00 +100 26.00 35.00 15.00 149.00 586.00 10.00 +101 31.00 67.00 3.00 356.00 930.00 10.00 \ No newline at end of file diff --git a/contribution/trunk/combinatorial/routing/vrptw/doc/CMakeLists.txt b/contribution/trunk/combinatorial/routing/vrptw/doc/CMakeLists.txt new file mode 100644 index 000000000..a9d92a120 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/doc/CMakeLists.txt @@ -0,0 +1,26 @@ + +########################################################################################## +### VRP-TW Doc generation using Doxygen +########################################################################################## + +IF (DOXYGEN_FOUND) + + SET(DOC_DIR ${CMAKE_BINARY_DIR}/doc CACHE PATH "VRP-TW contribution documentation directory") + SET(VRPTW_DOC_CONFIG_FILE "doxyfile" CACHE PATH "VRP-TW documentation configuration file") + # define the doc target + IF (DOXYGEN_EXECUTABLE) + ADD_CUSTOM_TARGET(doc + COMMAND ${DOXYGEN_EXECUTABLE} ${VRPTW_DOC_CONFIG_FILE} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + ) + ENDIF (DOXYGEN_EXECUTABLE) + + # configure doxyfile file + CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/doc/${VRPTW_DOC_CONFIG_FILE}.cmake" + "${CMAKE_BINARY_DIR}/doc/${VRPTW_DOC_CONFIG_FILE}") + +ELSE (DOXYGEN_FOUND) + MESSAGE(STATUS "Unable to generate the documentation, Doxygen package not found") +ENDIF (DOXYGEN_FOUND) + +########################################################################################## diff --git a/contribution/trunk/combinatorial/routing/vrptw/doc/doxyfile.cmake b/contribution/trunk/combinatorial/routing/vrptw/doc/doxyfile.cmake new file mode 100644 index 000000000..a75c48455 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/doc/doxyfile.cmake @@ -0,0 +1,1269 @@ +# Doxyfile 1.5.2 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file that +# follow. The default is UTF-8 which is also the encoding used for all text before +# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into +# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of +# possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = @PACKAGE_NAME@ + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = @PACKAGE_VERSION@ + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = @CMAKE_BINARY_DIR@/doc + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, +# Italian, Japanese, Japanese-en (Japanese with English messages), Korean, +# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, +# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@ + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explicit @brief command for a brief description. + +JAVADOC_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for Java. +# For instance, namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to +# include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = YES + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = YES + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = NO + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from the +# version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = NO + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = NO + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = @CMAKE_SOURCE_DIR@/src + +# This tag can be used to specify the character encoding of the source files that +# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default +# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. +# See http://www.gnu.org/software/libiconv for the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py + +FILE_PATTERNS = *.cpp \ + *.h + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the output. +# The symbol name can be a fully qualified name, a word, or if the wildcard * is used, +# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. Otherwise they will link to the documentstion. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 3 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = mo + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. + +GENERATE_TREEVIEW = YES + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = YES + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = @PARADISEO_EO_BIN_DIR@/doc/eo.doxytag=http://eodev.sourceforge.net/eo/doc/html + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = @CMAKE_BINARY_DIR@/doc/vrptw.doxytag + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to +# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to +# specify the directory where the mscgen tool resides. If left empty the tool is assumed to +# be found in the default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a call dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a caller dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen will always +# show the root nodes and its direct children regardless of this setting. + +DOT_GRAPH_MAX_NODES = 50 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, which results in a white background. +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = YES + diff --git a/contribution/trunk/combinatorial/routing/vrptw/install.cmake b/contribution/trunk/combinatorial/routing/vrptw/install.cmake new file mode 100644 index 000000000..816ff2ce3 --- /dev/null +++ b/contribution/trunk/combinatorial/routing/vrptw/install.cmake @@ -0,0 +1,50 @@ + + +######################################################################################################### +# 1) ParadisEO install: SIMPLE Configuration +######################################################################################################### + +# Here, just specify PARADISEO_DIR : the directory where ParadisEO is installed +SET(PARADISEO_DIR "/data/OPAC/software/paradisEO/test/trunk" CACHE PATH "ParadisEO directory" FORCE) + +######################################################################################################### + + + +######################################################################################################### +# 2) ParadisEO install: ADVANCED Configuration +######################################################################################################### + +SET(PARADISEO_EO_SRC_DIR "${PARADISEO_DIR}/paradiseo-eo" CACHE PATH "ParadisEO-EO source directory" FORCE) +SET(PARADISEO_EO_BIN_DIR "${PARADISEO_DIR}/paradiseo-eo/build" CACHE PATH "ParadisEO-EO binary directory" FORCE) + +SET(PARADISEO_MO_SRC_DIR "${PARADISEO_DIR}/paradiseo-mo" CACHE PATH "ParadisEO-MO source directory" FORCE) +SET(PARADISEO_MO_BIN_DIR "${PARADISEO_DIR}/paradiseo-mo/build" CACHE PATH "ParadisEO-MO binary directory" FORCE) + +SET(PARADISEO_MOEO_SRC_DIR "${PARADISEO_DIR}/paradiseo-moeo" CACHE PATH "ParadisEO-MOEO source directory" FORCE) +SET(PARADISEO_MOEO_BIN_DIR "${PARADISEO_DIR}/paradiseo-moeo/build" CACHE PATH "ParadisEO-MOEO binary directory" FORCE) + +SET(PARADISEO_PEO_SRC_DIR "${PARADISEO_DIR}/paradiseo-peo" CACHE PATH "ParadisEO-PEO source directory" FORCE) +SET(PARADISEO_PEO_BIN_DIR "${PARADISEO_DIR}/paradiseo-peo/build" CACHE PATH "ParadisEO-PEO binary directory" FORCE) +######################################################################################################### + + + +###################################################################################### +### 3) OPTIONNAL: Windows advanced config - especially for Microsoft Visual Studio 8 +###################################################################################### + + IF(CMAKE_CXX_COMPILER MATCHES cl) + IF(NOT WITH_SHARED_LIBS) + IF(CMAKE_GENERATOR STREQUAL "Visual Studio 8 2005") + SET(CMAKE_CXX_FLAGS "/nologo /W3 /Gy") + SET(CMAKE_CXX_FLAGS_DEBUG "/MTd /Z7 /Od") + SET(CMAKE_CXX_FLAGS_RELEASE "/MT /O2") + SET(CMAKE_CXX_FLAGS_MINSIZEREL "/MT /O2") + SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MTd /Z7 /Od") + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SUBSYSTEM:CONSOLE") + + ENDIF(CMAKE_GENERATOR STREQUAL "Visual Studio 8 2005") + ENDIF(NOT WITH_SHARED_LIBS) + ENDIF(CMAKE_CXX_COMPILER MATCHES cl) +######################################################################################