1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
|
/*PGR-GNU*****************************************************************
File: contractionGraph.hpp
Generated with Template by:
Copyright (c) 2015 pgRouting developers
Mail: project@pgrouting.org
Function's developer:
Copyright (c) 2016 Rohith Reddy
Mail:
------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
********************************************************************PGR-GNU*/
#ifndef INCLUDE_CONTRACTION_CONTRACTIONGRAPH_HPP_
#define INCLUDE_CONTRACTION_CONTRACTIONGRAPH_HPP_
#pragma once
#include <limits>
#include <algorithm>
#include <vector>
#include <iostream>
#include <tuple>
#include <cstdint>
#include <functional>
#include <utility>
#include <queue>
#include <boost/graph/iteration_macros.hpp>
#include "cpp_common/base_graph.hpp"
#include "cpp_common/ch_vertex.hpp"
#include "cpp_common/ch_edge.hpp"
namespace pgrouting {
namespace graph {
template <class G, bool t_directed>
class Pgr_contractionGraph : public Pgr_base_graph<G, CH_vertex, CH_edge, t_directed> {
public:
using V = typename boost::graph_traits<G>::vertex_descriptor;
using E = typename boost::graph_traits<G>::edge_descriptor;
using EO_i = typename boost::graph_traits<G>::out_edge_iterator;
using EI_i = typename boost::graph_traits<G>::in_edge_iterator;
using E_i = typename boost::graph_traits < G >::edge_iterator;
using V_p = typename std::pair< double, V >;
using PQ = typename
std::priority_queue< V_p, std::vector<V_p>, std::greater<V_p> >;
/*!
Prepares the _graph_ to be of type *directed*
*/
explicit Pgr_contractionGraph()
: Pgr_base_graph<G, CH_vertex, CH_edge, t_directed>(),
min_edge_id(0) {
}
/*! @brief get the vertex descriptors of adjacent vertices of *v*
@param [in] v vertex_descriptor
@return Identifiers<V>: The set of vertex descriptors adjacent to the given vertex *v*
*/
Identifiers<V> find_adjacent_vertices(V v) const {
Identifiers<V> adjacent_vertices;
for (const auto &e : boost::make_iterator_range(
out_edges(v, this->graph))) {
adjacent_vertices += this->adjacent(v, e);
}
for (const auto &e : boost::make_iterator_range(
in_edges(v, this->graph))) {
adjacent_vertices += this->adjacent(v, e);
}
return adjacent_vertices;
}
/*! @brief get the edge with minimum cost between two vertices
@param [in] u vertex_descriptor of source vertex
@param [in] v vertex_descriptor of target vertex
@return E: The edge descriptor of the edge with minimum cost
*/
std::tuple<CH_edge, bool>
get_min_cost_edge(V u, V v) {
Identifiers<int64_t> contracted_vertices;
double min_cost = (std::numeric_limits<double>::max)();
bool found = false;
CH_edge edge;
if (this->is_directed()) {
for (const auto &e : boost::make_iterator_range(out_edges(u, this->graph))) {
if (target(e, this->graph) == v) {
contracted_vertices += this->graph[e].contracted_vertices();
if (this->graph[e].cost < min_cost) {
min_cost = this->graph[e].cost;
edge = this->graph[e];
found = true;
}
}
}
/*
To follow the principles presented
for linear contraction in "issue_1002.pg" test 3
*/
edge.set_contracted_vertices(contracted_vertices);
return std::make_tuple(edge, found);
}
pgassert(this->is_undirected());
for (const auto &e : boost::make_iterator_range(out_edges(u, this->graph))) {
if (this->adjacent(u, e) == v) {
contracted_vertices += this->graph[e].contracted_vertices();
if ((this->graph[e]).cost < min_cost) {
min_cost = (this->graph[e]).cost;
edge = this->graph[e];
found = true;
}
}
}
// To follow the principles presented
// for linear contraction in "issue_1002.pg" test 3
edge.set_contracted_vertices(contracted_vertices);
return std::make_tuple(edge, found);
}
/*! @brief print the graph with contracted vertices of
all vertices and edges
*/
friend
std::ostream& operator <<(
std::ostream &os,
const Pgr_contractionGraph &g) {
EO_i out, out_end;
for (auto vi = vertices(g.graph).first;
vi != vertices(g.graph).second;
++vi) {
if ((*vi) >= g.num_vertices()) break;
os << g.graph[*vi].id << "(" << (*vi) << ")"
<< g.graph[*vi].contracted_vertices() << std::endl;
os << " out_edges_of(" << g.graph[*vi].id << "):";
for (boost::tie(out, out_end) = out_edges(*vi, g.graph);
out != out_end; ++out) {
os << ' ' << g.graph[*out].id
<< "=(" << g.graph[g.source(*out)].id
<< ", " << g.graph[g.target(*out)].id << ") = "
<< g.graph[*out].cost <<"\t";
}
os << std::endl;
}
return os;
}
/*! @brief add_shortuct to the graph during contraction
@param [in] edge of type *CH_edge* is to be added
@param [in] u vertex
@param [in] v vertex
u -> w -> v
u -> v
edge (u, v) is a new edge e
contracted_vertices = w + contracted vertices
*/
bool add_shortcut(const CH_edge &edge, V u, V v) {
bool inserted;
E e;
if (edge.cost < 0) return false;
boost::tie(e, inserted) = boost::add_edge(u, v, this->graph);
this->graph[e]= edge;
return inserted;
}
bool has_u_v_w(V u, V v, V w) const {
return boost::edge(u, v, this->graph).second && boost::edge(v, w, this->graph).second;
}
/**
Possibility of a shortcut from left vertex to right vertex
*v* should be a linear vertex
u <-> v -> w: v not considered linear
@dot
graph G {
graph [rankdir=LR];
subgraph cluster0 {
node [shape=point,height=0.2,style=filled,color=black];
style=filled;
color=lightgrey;
a0; a1; a2;
label = "rest of graph";
}
v [color=green];
v -- left;
v -- right;
u -- a0;
w -- a1;
}
@enddot
*/
bool is_shortcut_possible(
V u,
V v,
V w) {
if (u == v || v == w || u == w) return false;
pgassert(u != v);
pgassert(v != w);
pgassert(u != w);
if (this->is_undirected()) {
/*
* u - v - w
*/
return has_u_v_w(u, v, w);
}
pgassert(this->is_directed());
return
/*
* u <-> v <-> w
*/
(has_u_v_w(u, v, w) && has_u_v_w(w, v, u))
/*
* u -> v -> w
*/
||
(has_u_v_w(u, v, w) && !(boost::edge(v, u, this->graph).second || boost::edge(w, v, this->graph).second))
/*
* u <- v <- w
*/
||
(has_u_v_w(w, v, u) && !(boost::edge(v, w, this->graph).second || boost::edge(u, v, this->graph).second));
}
bool is_linear(V v) {
// Checking adjacent vertices constraint
auto adjacent_vertices = find_adjacent_vertices(v);
if (adjacent_vertices.size() == 2) {
// Checking u - v - w
V u = adjacent_vertices.front();
adjacent_vertices.pop_front();
V w = adjacent_vertices.front();
adjacent_vertices.pop_front();
if (is_shortcut_possible(u, v, w)) {
return true;
}
return false;
}
return false;
}
/*!
@brief Accessor to the next negative vertex id (to be created)
@return int64_t: id of the next vertex to be created
*/
int64_t get_next_id() {
return --min_edge_id;
}
/*!
@brief Accessor to the vertices on which contraction is forbidden
@param [in] Identifiers<V>: The set of forbidden vertex descriptors
*/
void set_forbidden_vertices(
Identifiers<V> m_forbidden_vertices) {
forbiddenVertices = m_forbidden_vertices;
}
/*!
@brief Checks if a vertex is forbidden to the contraction process
@param [in] v vertex to test
@return true if the vertex is forbiddent to the contraction process, false else
*/
bool is_forbidden(V v) {
if (forbiddenVertices.has(v)) {
return true;
}
return false;
}
/*!
@brief Accessor of the vertices on which contraction is forbidden
@return Identifiers<V>: The set of forbidden vertex descriptors
*/
bool is_dead_end(V v) {
if (this->is_undirected()) {
return this->find_adjacent_vertices(v).size() == 1;
}
pgassert(this->is_directed());
return this->find_adjacent_vertices(v).size() == 1
|| (this->in_degree(v) > 0 && this->out_degree(v) == 0);
}
/*! @brief vertices with at least one contracted vertex
@result The vids Identifiers with at least one contracted vertex
*/
std::vector<E> get_shortcuts() {
std::vector<E> eids;
for (const auto &e : boost::make_iterator_range(edges(this->graph))) {
if (this->graph[e].id < 0) {
eids.push_back(e);
pgassert(!(this->graph[e]).contracted_vertices().empty());
} else {
pgassert((this->graph[e]).contracted_vertices().empty());
}
}
std::sort(
eids.begin(),
eids.end(),
[&](E lhs, E rhs) {
return
-1*((this->graph)[lhs]).id < -1*((this->graph)[rhs]).id;
});
return eids;
}
/*! @brief vertices with at least one contracted vertex
@result The vids Identifiers with at least one contracted vertex
*/
Identifiers<int64_t> get_modified_vertices() {
Identifiers<int64_t> vids;
for (const auto &v :
boost::make_iterator_range(boost::vertices(this->graph))) {
if ((this->graph[v].vertex_order() > 0)
|| ((this->graph[v]).has_contracted_vertices())) {
vids += (this->graph[v]).id;
}
}
return vids;
}
/**
@brief builds the shortcut information and adds it during contraction
or afterwards to copy them to the source graph
@param [in] u origin node of the shortcut
@param [in] v shortcuted node
@param [in] w destination node of the shortcut
@return CH_edge: object containing the shortcut edge
*
* u ----e1{v1}----> v ----e2{v2}----> w
*
* e1: min cost edge from u to v
* e2: min cost edge from v to w
*
*
* result:
* u ---{v+v1+v2}---> w
*
*/
CH_edge process_shortcut(V u, V v, V w) {
auto e1 = get_min_cost_edge(u, v);
auto e2 = get_min_cost_edge(v, w);
double cost = std::numeric_limits<double>::max();
if (std::get<1>(e1) && std::get<1>(e2))
cost = std::get<0>(e1).cost + std::get<0>(e2).cost;
// Create shortcut
CH_edge shortcut(
get_next_id(),
(this->graph[u]).id,
(this->graph[w]).id,
cost);
shortcut.add_contracted_vertex(this->graph[v]);
shortcut.add_contracted_edge_vertices(std::get<0>(e1));
shortcut.add_contracted_edge_vertices(std::get<0>(e2));
// Add shortcut in the current graph (to go on the process)
add_shortcut(shortcut, u, w);
return shortcut;
}
void process_ch_shortcut(
V u, V v, V w,
std::vector<E> &shortcuts,
std::ostringstream &log) {
bool found_e;
E e;
boost::tie(e, found_e) = boost::edge(u, w, this->graph);
if ((is_shortcut_possible(u, v, w)) && (!found_e)) {
log << " Shortcut = ("
<< this->graph[u].id << ", " << this->graph[w].id
<< "), ";
auto e1 = get_min_cost_edge(u, v);
auto e2 = get_min_cost_edge(v, w);
double cost = std::numeric_limits<double>::max();
if (std::get<1>(e1) && std::get<1>(e2))
cost = std::get<0>(e1).cost + std::get<0>(e2).cost;
log << "cost = " << cost << std::endl;
// Create shortcut
CH_edge shortcut(
get_next_id(),
(this->graph[u]).id,
(this->graph[w]).id,
cost);
shortcut.add_contracted_vertex(this->graph[v]);
shortcut.add_contracted_edge_vertices(std::get<0>(e1));
shortcut.add_contracted_edge_vertices(std::get<0>(e2));
// Add shortcut in the current graph (to go on the process)
bool inserted;
E s;
boost::tie(s, inserted) = boost::add_edge(u, w, this->graph);
this->graph[s]= shortcut;
if (inserted) shortcuts.push_back(s);
}
}
/*! @brief computes p_max used in the contraction hierarchies method
*/
int64_t compute_pmax(V u, V v, Identifiers<V> out_vertices) {
int64_t p_max;
E e, f;
bool found_e;
p_max = 0;
boost::tie(e, found_e) = boost::edge(u, v, this->graph);
if (found_e) {
p_max = this->graph[e].cost;
for (V w : out_vertices) {
bool found_f;
boost::tie(f, found_f) = boost::edge(v, w, this->graph);
if ((found_f) && (u != w)) {
if ((this->graph[e].cost + this->graph[f].cost) > p_max)
p_max = this->graph[e].cost + this->graph[f].cost;
}
}
}
return p_max;
}
/*!
@brief copies shortcuts and modified vertices from another graph
@result void
*/
void copy_shortcuts(
std::vector<pgrouting::CH_edge> &shortcuts,
std::ostringstream &log) {
for (auto it = shortcuts.begin(); it != shortcuts.end(); it++) {
V u, v;
u = this->vertices_map[it->source];
v = this->vertices_map[it->target];
log << "Shortcut " << it->id << "(" << it->source
<< ", " << it->target << ")" << std::endl;
add_shortcut(*it, u, v);
}
}
/*!
@brief for C calls: to get the metric of a node, directly from the graph
@param [in] v vertex_descriptor
@return int64_t: the value of the metric for node v
*/
double get_vertex_metric(int64_t vertex_id) {
return (this->graph[this->vertices_map[vertex_id]]).metric();
}
/*!
@brief for C calls: to get the order of a node, directly from the graph
@param [in] v vertex_descriptor
@return int64_t: the order of node v
*/
int64_t get_vertex_order(int64_t vertex_id) {
return (this->graph[this->vertices_map[vertex_id]]).vertex_order();
}
/*!
@brief defines the metric and hierarchy at the level of the nodes, from a given priority queue
@param [in] PQ priority_queue
@return void
*/
void set_vertices_metric_and_hierarchy(
PQ priority_queue,
std::ostringstream &log
) {
int64_t i = 0;
while (!priority_queue.empty()) {
i++;
std::pair< double, V > ordered_vertex = priority_queue.top();
priority_queue.pop();
(this->graph[ordered_vertex.second]).metric() = ordered_vertex.first;
(this->graph[ordered_vertex.second]).vertex_order() = i;
log << "(" << ordered_vertex.first << ", "
<< (this->graph[ordered_vertex.second]).id
<< ")" << std::endl;
log << " metric = "
<< (this->graph[ordered_vertex.second]).metric()
<< " order = "
<< (this->graph[ordered_vertex.second]).vertex_order()
<< std::endl;
}
}
/*!
@brief get the vertex descriptors of adjacent vertices of *v*
@param [in] v vertex_descriptor
@return Identifiers<V>: The set of out vertex descriptors adjacent to the given vertex *v*
*/
Identifiers<V> find_adjacent_out_vertices(V v) const {
Identifiers<V> adjacent_vertices;
for (const auto &out :
boost::make_iterator_range(out_edges(v, this->graph)))
adjacent_vertices += this->adjacent(v, out);
return adjacent_vertices;
}
/*!
@brief get the vertex descriptors of adjacent vertices of *v*
@param [in] v vertex_descriptor
@return Identifiers<V>: The set of in vertex descriptors adjacent to the given vertex *v*
*/
Identifiers<V> find_adjacent_in_vertices(V v) const {
Identifiers<V> adjacent_vertices;
for (const auto &in :
boost::make_iterator_range(in_edges(v, this->graph)))
adjacent_vertices += this->adjacent(v, in);
return adjacent_vertices;
}
private:
int64_t min_edge_id;
Identifiers<V> forbiddenVertices;
};
} // namespace graph
} // namespace pgrouting
#endif // INCLUDE_CONTRACTION_CONTRACTIONGRAPH_HPP_
|