From 9b5436635b71bdaeecee6a0761eff15029fb67a1 Mon Sep 17 00:00:00 2001 From: "nikolaj.van.omme@gmail.com" Date: Tue, 9 Sep 2014 17:58:22 +0000 Subject: [PATCH] Doc automatic update --- documentation/changes_list.txt | 6 + documentation/documentation_hub.html | 21 +- .../tutorials/cplusplus/chap10/A-n32-k5.vrp | 76 + .../tutorials/cplusplus/chap10/Makefile | 73 + .../cplusplus/chap10/check_cvrp_solution.cc | 52 + .../cplusplus/chap10/check_vrp_solution.cc | 56 + .../tutorials/cplusplus/chap10/cvrp_basic.cc | 141 ++ .../tutorials/cplusplus/chap10/cvrp_data.h | 203 +++ .../cplusplus/chap10/cvrp_data_generator.cc | 48 + .../cplusplus/chap10/cvrp_data_generator.h | 147 ++ .../cplusplus/chap10/cvrp_epix_data.h | 130 ++ .../cplusplus/chap10/cvrp_solution.h | 279 +++ .../cplusplus/chap10/cvrp_solution_to_epix.cc | 56 + .../tutorials/cplusplus/chap10/opt-A-n32-k5 | 6 + .../cplusplus/chap10/opt-A-n32-k5.eepic | 1578 +++++++++++++++++ .../cplusplus/chap10/opt-A-n32-k5.pdf | Bin 0 -> 14078 bytes .../cplusplus/chap10/opt-A-n32-k5.xp | 193 ++ .../tutorials/cplusplus/chap10/vrp.cc | 124 ++ .../cplusplus/chap10/vrp_solution_to_epix.cc | 56 + .../tutorials/cplusplus/chap13/Makefile | 26 + .../cplusplus/chap13/rl_auxiliary_graph.cc | 87 + .../cplusplus/chap6/.kdev_include_paths | 2 - .../tutorials/cplusplus/chap6/chap6.kdev4 | 3 - .../tutorials/cplusplus/common/IO_helpers.h | 98 + .../tutorials/cplusplus/common/common_flags.h | 30 + .../tutorials/cplusplus/common/constants.h | 27 + .../tutorials/cplusplus/common/limits.h | 222 +++ .../tutorials/cplusplus/common/random.h | 39 + .../cplusplus/routing_common/routing_common.h | 230 +++ .../routing_common/routing_common_flags.h | 57 + .../cplusplus/routing_common/routing_data.h | 228 +++ .../routing_common/routing_data_generator.h | 80 + .../routing_common/routing_distance.h | 76 + .../routing_common/routing_epix_helper.h | 124 ++ .../cplusplus/routing_common/routing_random.h | 73 + .../routing_common/routing_solution.h | 51 + .../cplusplus/routing_common/tsplib.h | 406 +++++ .../cplusplus/routing_common/tsplib_reader.h | 618 +++++++ 38 files changed, 5710 insertions(+), 12 deletions(-) create mode 100644 documentation/tutorials/cplusplus/chap10/A-n32-k5.vrp create mode 100644 documentation/tutorials/cplusplus/chap10/Makefile create mode 100644 documentation/tutorials/cplusplus/chap10/check_cvrp_solution.cc create mode 100644 documentation/tutorials/cplusplus/chap10/check_vrp_solution.cc create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_basic.cc create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_data.h create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_data_generator.cc create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_data_generator.h create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_epix_data.h create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_solution.h create mode 100644 documentation/tutorials/cplusplus/chap10/cvrp_solution_to_epix.cc create mode 100644 documentation/tutorials/cplusplus/chap10/opt-A-n32-k5 create mode 100644 documentation/tutorials/cplusplus/chap10/opt-A-n32-k5.eepic create mode 100644 documentation/tutorials/cplusplus/chap10/opt-A-n32-k5.pdf create mode 100644 documentation/tutorials/cplusplus/chap10/opt-A-n32-k5.xp create mode 100644 documentation/tutorials/cplusplus/chap10/vrp.cc create mode 100644 documentation/tutorials/cplusplus/chap10/vrp_solution_to_epix.cc create mode 100644 documentation/tutorials/cplusplus/chap13/Makefile create mode 100644 documentation/tutorials/cplusplus/chap13/rl_auxiliary_graph.cc delete mode 100644 documentation/tutorials/cplusplus/chap6/.kdev_include_paths delete mode 100644 documentation/tutorials/cplusplus/chap6/chap6.kdev4 create mode 100644 documentation/tutorials/cplusplus/common/IO_helpers.h create mode 100644 documentation/tutorials/cplusplus/common/common_flags.h create mode 100644 documentation/tutorials/cplusplus/common/constants.h create mode 100644 documentation/tutorials/cplusplus/common/limits.h create mode 100644 documentation/tutorials/cplusplus/common/random.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_common.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_common_flags.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_data.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_data_generator.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_distance.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_epix_helper.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_random.h create mode 100644 documentation/tutorials/cplusplus/routing_common/routing_solution.h create mode 100644 documentation/tutorials/cplusplus/routing_common/tsplib.h create mode 100644 documentation/tutorials/cplusplus/routing_common/tsplib_reader.h diff --git a/documentation/changes_list.txt b/documentation/changes_list.txt index 685f34edf2..b3dab0892e 100644 --- a/documentation/changes_list.txt +++ b/documentation/changes_list.txt @@ -1,4 +1,10 @@ +v.0.2.11: (2014-09-09 13:57:19) +------------------------------- +* Quick update of the tutorial codes in chapter 10 and one file for chap13: code adapted to the new API; the manual is NOT up to date! +* Tutorial code for common and routing_common added. + + v.0.2.10: (2014-09-04 16:09:13) ------------------------------- * Quick update of the tutorial codes in chapters 2, 3 and 6: code adapted to the new API; the manual is NOT up to date! diff --git a/documentation/documentation_hub.html b/documentation/documentation_hub.html index fd9637c7e9..7a6e1d4855 100644 --- a/documentation/documentation_hub.html +++ b/documentation/documentation_hub.html @@ -84,10 +84,11 @@ Thank you very much.

What's new?


Here is a little summary:

-
v.0.2.10: (2014-09-04 16:09:13)
+
v.0.2.11: (2014-09-09 13:57:19)
 -------------------------------
-* Quick update of the tutorial codes in chapters 2, 3 and 6: code adapted to the new API; the manual is NOT up to date!
-* Licenses updated;
+* Quick update of the tutorial codes in chapter 10 and one file for chap13: code adapted to the new API; the manual is NOT up to date!
+* Tutorial code for common and routing_common added.
+
 

This is the list of changes.

Legend:
@@ -341,6 +342,12 @@ to use these makefiles.

You can also overwrite this variable when invoking make:
make OR_TOOLS_TOP=/home/username/or-tools-read-only
+ +
  • If you want to play with the routing examples, the TUTORIAL variable must point to the C++ tutorial directory. By default, it is defined as: +
    TUTORIAL=($OR_TOOLS_TOP)/documentation/tutorials/cplusplus
    +If you deploy the tutorial examples somewhere else, update this variable accordingly. +
  • +
  • If you want to compile all examples:
    make all
  • @@ -354,11 +361,11 @@ You can also overwrite this variable when invoking make: -
  • To delete the created files: +
  • To delete all generated files:
    make local_clean
    -Don't use +Don't use
    make clean
    -as you will erase the generated files for the whole library! +as you will erase the generated files for the whole library!
  • @@ -394,7 +401,7 @@ as you will erase the generated files for the whole library!