PGROUTING  3.2
withPoints_ksp_driver.h
Go to the documentation of this file.
1 /*PGR-GNU*****************************************************************
2 File: withPoints_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_YEN_WITHPOINTS_KSP_DRIVER_H_
30 #define INCLUDE_DRIVERS_YEN_WITHPOINTS_KSP_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 
41 #include "c_types/pgr_edge_t.h"
43 
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49  // CREATE OR REPLACE FUNCTION pgr_withPointKsp(
50  // edges_sql TEXT,
51  // points_sql TEXT,
52  // start_pid BIGINT,
53  // end_pid BIGINT,
54  // directed BOOLEAN DEFAULT true,
56  pgr_edge_t *edges, size_t total_edges,
57  Point_on_edge_t *points, size_t total_points,
58  pgr_edge_t *edges_of_points, size_t total_edges_of_points,
59  int64_t start_pid,
60  int64_t end_pid,
61  size_t k,
62  bool directed,
63  bool heap_paths,
64  char driving_side,
65  bool details,
66 
67  General_path_element_t **return_tuples,
68  size_t *return_count,
69  char ** log_msg,
70  char ** notice_msg,
71  char ** err_msg);
72 
73 
74 #ifdef __cplusplus
75  }
76 #endif
77 
78 #endif // INCLUDE_DRIVERS_YEN_WITHPOINTS_KSP_DRIVER_H_
point_on_edge_t.h
pgr_edge_t
Definition: pgr_edge_t.h:37
Point_on_edge_t
Definition: point_on_edge_t.h:37
do_pgr_withPointsKsp
int do_pgr_withPointsKsp(pgr_edge_t *edges, size_t total_edges, Point_on_edge_t *points, size_t total_points, pgr_edge_t *edges_of_points, size_t total_edges_of_points, int64_t start_pid, int64_t end_pid, size_t k, bool directed, bool heap_paths, char driving_side, bool details, General_path_element_t **return_tuples, size_t *return_count, char **log_msg, char **notice_msg, char **err_msg)
Definition: withPoints_ksp_driver.cpp:54
General_path_element_t
Definition: general_path_element_t.h:37
general_path_element_t.h
pgr_edge_t.h