![]() |
vrpRouting
0.3
|
#include <stddef.h>
Go to the source code of this file.
Typedefs | |
typedef struct Matrix_cell_t | Matrix_cell_t |
Functions | |
void | get_matrixRows (char *sql, Matrix_cell_t **rows, size_t *total_rows) |
Get the travel time matrix. More... | |
void | get_matrixRows_plain (char *sql, Matrix_cell_t **rows, size_t *total_rows) |
Get the travel time matrix with numerical types. More... | |
typedef struct Matrix_cell_t Matrix_cell_t |
Definition at line 31 of file matrixRows_input.h.
void get_matrixRows | ( | char * | sql, |
Matrix_cell_t ** | rows, | ||
size_t * | total_rows | ||
) |
Get the travel time matrix.
[in] | sql | SQL query that has the following columns: start_vid, end_vid, agg_cost |
[out] | rows | C Container that holds all the matrix rows |
[out] | total_rows | Total rows recieved |
Definition at line 176 of file matrixRows_input.c.
References ANY_INTEGER, Column_info_t::colNumber, Column_info_t::eType, get_matrixRows_general(), INTERVAL, Column_info_t::name, Column_info_t::strict, and Column_info_t::type.
Referenced by process().
void get_matrixRows_plain | ( | char * | sql, |
Matrix_cell_t ** | rows, | ||
size_t * | total_rows | ||
) |
Get the travel time matrix with numerical types.
[in] | sql | SQL query that has the following columns: start_vid, end_vid, agg_cost |
[out] | rows | C Container that holds all the matrix rows |
[out] | total_rows | Total rows recieved |
Definition at line 203 of file matrixRows_input.c.
References ANY_INTEGER, ANY_NUMERICAL, Column_info_t::colNumber, Column_info_t::eType, get_matrixRows_general(), Column_info_t::name, Column_info_t::strict, and Column_info_t::type.
Referenced by process().