From 043d28aa30e08943da474f84aebe9d4555e84165 Mon Sep 17 00:00:00 2001 From: l-vincent-l Date: Tue, 12 Aug 2014 11:36:33 +0200 Subject: [PATCH 1/2] Kraken: dt_pt was used instead of dt_transfer --- source/routing/raptor_path_defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/routing/raptor_path_defs.h b/source/routing/raptor_path_defs.h index b793fee4d0..b9a199eeb0 100644 --- a/source/routing/raptor_path_defs.h +++ b/source/routing/raptor_path_defs.h @@ -14,7 +14,7 @@ void handle_connection(const size_t countb, const navitia::type::idx_t current_j auto destination_jpp = raptor_.data.pt_data->journey_pattern_points[boarding_jpp_idx]; auto destination = destination_jpp->stop_point; auto connections = departure->stop_point_connection_list; - auto l = raptor_.labels[countb][current_jpp_idx].dt_pt; + auto l = raptor_.labels[countb][current_jpp_idx].dt_transfer; // We try to find the connection that was taken by the algorithm auto find_predicate = [&](type::StopPointConnection* connection)->bool { return departure == connection->departure && destination == connection->destination; From d20904321a7a9f9971602ad4fea01a44de42de63 Mon Sep 17 00:00:00 2001 From: l-vincent-l Date: Tue, 12 Aug 2014 11:45:00 +0200 Subject: [PATCH 2/2] Version 0.101.2 --- debian/changelog | 6 ++++++ source/CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 8e788e7d8d..4ab0344493 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +navitia2 (0.101.2) unstable; urgency=low + + * Kraken: Fix a bug in path building + + -- Vincent Lara Mon, 12 Aug 2014 11:44:13 +0100 + navitia2 (0.101.1) unstable; urgency=low * Kraken: Add routing dependency to pb_lib diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index f950a61592..a821c04295 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -13,7 +13,7 @@ endif() SET(KRAKEN_VERSION_MAJOR 0) SET(KRAKEN_VERSION_MINOR 101) -SET(KRAKEN_VERSION_PATCH 1) +SET(KRAKEN_VERSION_PATCH 2) IF(NOT CMAKE_BUILD_TYPE) SET(CMAKE_BUILD_TYPE Debug)