PGROUTING
3.2
|
#include "drivers/max_flow/edge_disjoint_paths_driver.h"
#include <sstream>
#include <vector>
#include <set>
#include "max_flow/pgr_maxflow.hpp"
#include "cpp_common/identifiers.hpp"
#include "cpp_common/pgr_alloc.hpp"
#include "cpp_common/pgr_assert.h"
Go to the source code of this file.
Functions | |
void | do_pgr_edge_disjoint_paths (pgr_edge_t *data_edges, size_t total_edges, pgr_combination_t *combinations, size_t total_combinations, int64_t *sources, size_t size_source_verticesArr, int64_t *sinks, size_t size_sink_verticesArr, bool directed, General_path_element_t **return_tuples, size_t *return_count, char **log_msg, char **notice_msg, char **err_msg) |
static std::vector< General_path_element_t > | single_execution (std::vector< pgr_edge_t > edges, int64_t source, int64_t target, bool directed) |
void do_pgr_edge_disjoint_paths | ( | pgr_edge_t * | data_edges, |
size_t | total_edges, | ||
pgr_combination_t * | combinations, | ||
size_t | total_combinations, | ||
int64_t * | sources, | ||
size_t | size_source_verticesArr, | ||
int64_t * | sinks, | ||
size_t | size_sink_verticesArr, | ||
bool | directed, | ||
General_path_element_t ** | return_tuples, | ||
size_t * | return_count, | ||
char ** | log_msg, | ||
char ** | notice_msg, | ||
char ** | err_msg | ||
) |
Definition at line 66 of file edge_disjoint_paths_driver.cpp.
References General_path_element_t::agg_cost, pgassert, pgr_alloc(), pgr_free(), pgr_msg(), single_execution(), and AssertFailedException::what().
Referenced by process().
|
static |
Definition at line 45 of file edge_disjoint_paths_driver.cpp.
Referenced by do_pgr_edge_disjoint_paths().