![]() |
PGROUTING
2.4
|
#include "./../../common/src/postgres_connection.h"
#include "utils/array.h"
#include "./../../common/src/debug_macro.h"
#include "./../../common/src/e_report.h"
#include "./../../common/src/time_msg.h"
#include "./../../common/src/pgr_types.h"
#include "./../../common/src/edges_input.h"
#include "./../../common/src/arrays_input.h"
#include "./astar_many_to_many_driver.h"
Go to the source code of this file.
Functions | |
PGDLLEXPORT Datum | astarManyToMany (PG_FUNCTION_ARGS) |
PG_FUNCTION_INFO_V1 (astarManyToMany) | |
static void | process (char *edges_sql, ArrayType *starts, ArrayType *ends, bool directed, int heuristic, double factor, double epsilon, bool only_cost, General_path_element_t **result_tuples, size_t *result_count) |
PGDLLEXPORT Datum astarManyToMany | ( | PG_FUNCTION_ARGS | ) |
Definition at line 132 of file many_to_many_astar.c.
References General_path_element_t::agg_cost, General_path_element_t::cost, General_path_element_t::edge, General_path_element_t::end_id, General_path_element_t::node, process(), General_path_element_t::seq, and General_path_element_t::start_id.
PG_FUNCTION_INFO_V1 | ( | astarManyToMany | ) |
|
static |
Definition at line 48 of file many_to_many_astar.c.
References check_parameters(), do_pgr_astarManyToMany(), edges, err_msg, PGR_DBG, pgr_get_bigIntArray(), pgr_get_edges_xy(), pgr_global_report(), pgr_SPI_connect(), pgr_SPI_finish(), and time_msg().
Referenced by astarManyToMany().