PGROUTING
3.2
|
#include <stdbool.h>
#include "c_common/postgres_connection.h"
#include "utils/array.h"
#include "c_common/debug_macro.h"
#include "c_common/e_report.h"
#include "c_common/time_msg.h"
#include "c_common/edges_input.h"
#include "c_common/arrays_input.h"
#include "c_common/combinations_input.h"
#include "drivers/max_flow/edge_disjoint_paths_driver.h"
Go to the source code of this file.
Functions | |
PGDLLEXPORT Datum | _pgr_edgedisjointpaths (PG_FUNCTION_ARGS) |
PG_FUNCTION_INFO_V1 (_pgr_edgedisjointpaths) | |
static void | process (char *edges_sql, char *combinations_sql, ArrayType *starts, ArrayType *ends, bool directed, General_path_element_t **result_tuples, size_t *result_count) |
PGDLLEXPORT Datum _pgr_edgedisjointpaths | ( | PG_FUNCTION_ARGS | ) |
Definition at line 138 of file edge_disjoint_paths.c.
References General_path_element_t::agg_cost, General_path_element_t::cost, General_path_element_t::edge, General_path_element_t::end_id, if(), General_path_element_t::node, process(), General_path_element_t::seq, and General_path_element_t::start_id.
PG_FUNCTION_INFO_V1 | ( | _pgr_edgedisjointpaths | ) |
|
static |
Definition at line 48 of file edge_disjoint_paths.c.
References do_pgr_edge_disjoint_paths(), PGR_DBG, pgr_get_bigIntArray(), pgr_get_combinations(), pgr_get_edges(), pgr_global_report(), pgr_SPI_connect(), pgr_SPI_finish(), and time_msg().
Referenced by _pgr_edgedisjointpaths().