Home
last modified time | relevance | path

Searched refs:total_edges (Results 1 – 25 of 217) sorted by relevance

123456789

/dports/databases/pgrouting/pgrouting-3.2.0/include/c_common/
H A Dedges_input.h54 size_t *total_edges);
73 size_t *total_edges);
77 size_t *total_edges);
96 size_t *total_edges);
121 size_t *total_edges);
141 size_t *total_edges);
162 size_t *total_edges);
179 size_t *total_edges);
/dports/databases/pgrouting/pgrouting-3.2.0/src/dijkstra/
H A Ddijkstra.c76 size_t total_edges = 0; in process() local
78 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
84 pgr_get_edges_reversed(edges_sql, &edges, &total_edges); in process()
91 if (total_edges == 0) { in process()
103 edges, total_edges, in process()
168 size_t total_edges = 0; in process_combinations() local
173 pgr_get_edges(edges_sql, &edges, &total_edges); in process_combinations()
175 if (total_edges == 0) { in process_combinations()
191 edges, total_edges, in process_combinations()
H A Ddijkstra_driver.cpp160 size_t total_edges, in do_pgr_many_to_many_dijkstra() argument
181 pgassert(total_edges != 0); in do_pgr_many_to_many_dijkstra()
200 digraph.insert_edges(data_edges, total_edges); in do_pgr_many_to_many_dijkstra()
207 undigraph.insert_edges(data_edges, total_edges); in do_pgr_many_to_many_dijkstra()
264 size_t total_edges, in do_pgr_combinations_dijkstra() argument
283 pgassert(total_edges != 0); in do_pgr_combinations_dijkstra()
302 digraph.insert_edges(data_edges, total_edges); in do_pgr_combinations_dijkstra()
309 undigraph.insert_edges(data_edges, total_edges); in do_pgr_combinations_dijkstra()
/dports/databases/pgrouting/pgrouting-3.2.0/src/common/
H A Dedges_input.c208 size_t *total_edges, in get_edges_9_columns() argument
256 (*total_edges) = total_tuples = valid_edges = 0; in get_edges_9_columns()
302 (*total_edges) = total_tuples; in get_edges_9_columns()
694 size_t *total_edges) { in pgr_get_flow_edges() argument
704 size_t *total_edges) { in pgr_get_costFlow_edges() argument
714 size_t *total_edges) { in pgr_get_edges() argument
725 size_t *total_edges) { in pgr_get_edges_reversed() argument
736 size_t *total_edges) { in pgr_get_edges_no_id() argument
747 size_t *total_edges) { in pgr_get_edges_xy() argument
760 size_t *total_edges) { in pgr_get_edges_xy_reversed() argument
[all …]
/dports/databases/pgrouting/pgrouting-3.2.0/src/planar/
H A DisPlanar.c53 size_t total_edges = 0; in process() local
55 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
57 if (total_edges == 0) { in process()
70 total_edges, in process()
H A DboyerMyrvold.c62 size_t total_edges = 0; in process() local
64 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
65 PGR_DBG("Total %ld edges in query:", total_edges); in process()
67 if (total_edges == 0) { in process()
79 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/mincut/
H A DstoerWagner.c62 size_t total_edges = 0; in process() local
64 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
65 PGR_DBG("Total %ld edges in query:", total_edges); in process()
67 if (total_edges == 0) { in process()
80 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/components/
H A DmakeConnected.c62 size_t total_edges = 0; in process() local
64 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
65 PGR_DBG("Total %ld edges in query:", total_edges); in process()
67 if (total_edges == 0) { in process()
79 total_edges, in process()
H A Dbridges.c60 size_t total_edges = 0; in process() local
62 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
64 if (total_edges == 0) { in process()
75 total_edges, in process()
H A DarticulationPoints.c60 size_t total_edges = 0; in process() local
62 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
64 if (total_edges == 0) { in process()
75 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/spanningTree/
H A DrandomSpanningTree.c61 size_t total_edges = 0; in process() local
63 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
64 PGR_DBG("Total %ld edges in query:", total_edges); in process()
66 if (total_edges == 0) { in process()
79 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/lineGraph/
H A DlineGraph.c89 size_t total_edges = 0; in process() local
91 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
92 PGR_DBG("Total %ld edges in query:", total_edges); in process()
94 if (total_edges == 0) { in process()
107 total_edges, in process()
H A DlineGraphFull.c57 size_t total_edges = 0; in process() local
59 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
60 PGR_DBG("Total %ld edges in query:", total_edges); in process()
62 if (total_edges == 0) { in process()
75 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/astar/
H A Dastar_driver.cpp87 Pgr_edge_xy_t *edges, size_t total_edges, in do_pgr_astarManyToMany() argument
112 pgassert(total_edges != 0); in do_pgr_astarManyToMany()
131 pgrouting::extract_vertices(edges, total_edges), in do_pgr_astarManyToMany()
133 digraph.insert_edges(edges, total_edges); in do_pgr_astarManyToMany()
139 pgrouting::extract_vertices(edges, total_edges), in do_pgr_astarManyToMany()
141 undigraph.insert_edges(edges, total_edges); in do_pgr_astarManyToMany()
/dports/databases/pgrouting/pgrouting-3.2.0/src/ksp/
H A Dksp.c58 size_t total_edges = 0; in compute() local
66 pgr_get_edges(edges_sql, &edges, &total_edges); in compute()
67 PGR_DBG("Total %ld edges in query:", total_edges); in compute()
69 if (total_edges == 0) { in compute()
86 total_edges, in compute()
H A DwithPoints_ksp_driver.cpp55 pgr_edge_t *edges, size_t total_edges, in do_pgr_withPointsKsp() argument
79 pgassert(total_edges != 0); in do_pgr_withPointsKsp()
113 auto vertices(pgrouting::extract_vertices(edges, total_edges)); in do_pgr_withPointsKsp()
125 digraph.insert_edges(edges, total_edges); in do_pgr_withPointsKsp()
139 undigraph.insert_edges(edges, total_edges); in do_pgr_withPointsKsp()
/dports/databases/pgrouting/pgrouting-3.2.0/src/breadthFirstSearch/
H A DbreadthFirstSearch.c71 size_t total_edges = 0; in process() local
73 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
74 PGR_DBG("Total %ld edges in query:", total_edges); in process()
76 if (total_edges == 0) { in process()
90 total_edges, in process()
H A DbinaryBreadthFirstSearch.c91 size_t total_edges = 0; in process() local
93 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
94 PGR_DBG("Total %ld edges in query:", total_edges); in process()
96 if (total_edges == 0) { in process()
112 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/bdAstar/
H A DbdAstar.c88 size_t total_edges = 0; in process() local
90 pgr_get_edges_xy(edges_sql, &edges, &total_edges); in process()
91 PGR_DBG("Total %ld edges in query:", total_edges); in process()
93 if (total_edges == 0) { in process()
107 edges, total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/bellman_ford/
H A Dbellman_ford.c93 size_t total_edges = 0; in process() local
95 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
96 PGR_DBG("Total %ld edges in query:", total_edges); in process()
98 if (total_edges == 0) { in process()
112 total_edges, in process()
H A DedwardMoore.c91 size_t total_edges = 0; in process() local
93 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
94 PGR_DBG("Total %ld edges in query:", total_edges); in process()
96 if (total_edges == 0) { in process()
112 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/max_flow/
H A DminCostMaxFlow.c94 size_t total_edges = 0; in process() local
114 pgr_get_costFlow_edges(edges_sql, &edges, &total_edges); in process()
115 PGR_DBG("Total %ld edges in query:", total_edges); in process()
117 if (total_edges == 0) { in process()
134 edges, total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/bdDijkstra/
H A DbdDijkstra.c71 size_t total_edges = 0; in process() local
85 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
86 PGR_DBG("Total %ld edges in query:", total_edges); in process()
88 if (total_edges == 0) { in process()
100 edges, total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/dagShortestPath/
H A DdagShortestPath.c96 size_t total_edges = 0; in process() local
98 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
99 PGR_DBG("Total %ld edges in query:", total_edges); in process()
101 if (total_edges == 0) { in process()
114 total_edges, in process()
/dports/databases/pgrouting/pgrouting-3.2.0/src/coloring/
H A Dbipartite.c59 size_t total_edges = 0; in process() local
61 pgr_get_edges(edges_sql, &edges, &total_edges); in process()
62 if (total_edges == 0) { in process()
73 edges, total_edges, in process()

123456789