PGROUTING  3.2
astar_driver.h
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: astarOneToMany_driver.h
3 
4 Copyright (c) 2015 pgRouting developers
6 
7 Function's developer:
8 Copyright (c) 2015 Celia Virginia Vergara Castillo
9 Mail:
10 
11 ------
12 
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17 
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22 
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 
27  ********************************************************************PGR-GNU*/
28 
29 #ifndef INCLUDE_DRIVERS_ASTAR_ASTAR_DRIVER_H_
30 #define INCLUDE_DRIVERS_ASTAR_ASTAR_DRIVER_H_
31 #pragma once
32 
33 /* for size-t */
34 #ifdef __cplusplus
35 # include <cstddef>
36 #else
37 # include <stddef.h>
38 #endif
39 
40 #include "c_types/pgr_edge_xy_t.h"
43 
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49  /*********************************************************
50  edges_sql TEXT,
51  vertex_table TEXT,
52  start_vid BIGINT,
53  end_vid BIGINT directed BOOLEAN DEFAULT true,
54  ********************************************************/
56  Pgr_edge_xy_t *data_edges,
57  size_t total_edges,
58 
59  pgr_combination_t *combinations,
60  size_t total_combinations,
61 
62  int64_t *start_vidsArr, size_t size_start_vidsArr,
63  int64_t *end_vidsArr, size_t size_end_vidsArr,
64  bool directed,
65  int heuristic,
66  double factor,
67  double epsilon,
68  bool only_cost,
69  bool normal,
70  General_path_element_t **return_tuples,
71  size_t *return_count,
72  char** log_msg,
73  char** notice_msg,
74  char** err_msg);
75 
76 
77 #ifdef __cplusplus
78 }
79 #endif
80 
81 #endif // INCLUDE_DRIVERS_ASTAR_ASTAR_DRIVER_H_
pgr_combination_t.h
do_pgr_astarManyToMany
void do_pgr_astarManyToMany(Pgr_edge_xy_t *data_edges, size_t total_edges, pgr_combination_t *combinations, size_t total_combinations, int64_t *start_vidsArr, size_t size_start_vidsArr, int64_t *end_vidsArr, size_t size_end_vidsArr, bool directed, int heuristic, double factor, double epsilon, bool only_cost, bool normal, General_path_element_t **return_tuples, size_t *return_count, char **log_msg, char **notice_msg, char **err_msg)
Definition: astar_driver.cpp:86
pgr_edge_xy_t.h
pgr_combination_t
Definition: pgr_combination_t.h:43
General_path_element_t
Definition: general_path_element_t.h:37
general_path_element_t.h
Pgr_edge_xy_t
Definition: pgr_edge_xy_t.h:38