pgr_bdAstarCost¶
pgr_bdAstarCost
- Total cost of the shortest path(s) using the bidirectional
A* algorithm.

Boost Graph Inside¶
Disponibilidad
Versión 3.2.0
New proposed signature:
pgr_bdAstarCost
(Combinations)
Versión 3.0.0
Función oficial
Version 2.4.0
New proposed function
Descripción¶
The pgr_bdAstarCost
function sumarizes of the cost of the shortest path(s)
using the bidirectional A* algorithm.
The main characteristics are:
El tipo predeterminado de grafo es dirigido cuando
Falta la el indicador de
directed
.El indicador de
directed
se configura a «true».
A menos que se especifique lo contrario, la orden es:
primero por
start_vid
(si existe)luego por
end_vid
Los valores se devuelven cuando hay una ruta
Permita que \(v\) y \(u\) sean nodos en el grafo:
Si no hay camino de \(v\) a \(u\):
no se devuelve ninguna fila correspondiente
agg_cost
de \(v\) a \(u\) es \(\infty\)
No hay camino cuando \(v = u\) por lo tanto
no se devuelve ninguna fila correspondiente
agg_cost
de v a u es \(0\)
Los bordes con costes negativos no se incluyen en el grafo.
Cuando las coordenadas (x,y) para el mismo identificador de vértice difieren:
Se utiliza una selección aleatoria de las coordenadas del vértice (x,y).
Tiempo de ejecución: \(O((E + V) * \log V)\)
It does not return a path.
Returns the sum of the costs of the shortest path of each pair combination of nodes requested.
Let be the case the values returned are stored in a table, so the unique index would be the pair: (start_vid, end_vid)
For undirected graphs, the results are symmetric.
The agg_cost of (u, v) is the same as for (v, u).
The returned values are ordered in ascending order:
start_vid ascending
end_vid ascending
Firmas¶
Resumen
pgr_bdAstarCost(Edges SQL, start vid, end vid [, directed] [, heuristic] [, factor] [, epsilon]) pgr_bdAstarCost(Edges SQL, start vid, end vids [, directed] [, heuristic] [, factor] [, epsilon]) pgr_bdAstarCost(Edges SQL, start vids, end vid [, directed] [, heuristic] [, factor] [, epsilon]) pgr_bdAstarCost(Edges SQL, start vids, end vids [, directed] [, heuristic] [, factor] [, epsilon]) pgr_bdAstarCost(Edges SQL, Combinations SQL [, directed] [, heuristic] [, factor] [, epsilon]) RETURNS SET OF (start_vid, end_vid, agg_cost) OR EMPTY SET
Uno a Uno¶
pgr_bdAstarCost(Edges SQL, start vid, end vid [, directed] [, heuristic] [, factor] [, epsilon]) RETURNS SET OF (start_vid, end_vid, agg_cost) OR EMPTY SET
- Ejemplo
From vertex \(2\) to vertex \(11\) on a directed graph with heuristic \(2\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
2, 11,
directed => true, heuristic => 2
);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 11 | 3
(1 row)
One to Many¶
pgr_bdAstarCost(Edges SQL, start vid, end vids [, directed] [, heuristic] [, factor] [, epsilon]) RETURNS SET OF (start_vid, end_vid, agg_cost) OR EMPTY SET
- Ejemplo
From vertex \(2\) to vertices \(\{3, 11\}\) on a directed graph with heuristic \(3\) and factor \(3.5\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
2, ARRAY[3, 11],
heuristic => 3, factor := 3.5
);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 3 | 5
2 | 11 | 3
(2 rows)
Muchos a Uno¶
pgr_bdAstarCost(Edges SQL, start vids, end vid [, directed] [, heuristic] [, factor] [, epsilon]) RETURNS SET OF (start_vid, end_vid, agg_cost) OR EMPTY SET
- Ejemplo
From vertices \(\{2, 10\}\) to vertex \(3\) on an undirected graph with heuristic \(4\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
ARRAY[2, 10], 3,
false, heuristic => 4
);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 3 | 1
10 | 3 | 3
(2 rows)
Muchos a Muchos¶
pgr_bdAstarCost(Edges SQL, start vids, end vids [, directed] [, heuristic] [, factor] [, epsilon]) RETURNS SET OF (start_vid, end_vid, agg_cost) OR EMPTY SET
- Ejemplo
From vertices \(\{2, 10\}\) to vertices \(\{3, 11\}\) on a directed graph with factor \(0.5\)
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
ARRAY[2, 10], ARRAY[3, 11],
factor => 0.5
);
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 3 | 5
2 | 11 | 3
10 | 3 | 5
10 | 11 | 1
(4 rows)
Combinaciones¶
pgr_bdAstarCost(Edges SQL, Combinations SQL [, directed] [, heuristic] [, factor] [, epsilon]) RETURNS SET OF (start_vid, end_vid, agg_cost) OR EMPTY SET
- Ejemplo
Using a combinations table on a directed graph with factor \(0.5\).
The combinations table:
SELECT * FROM combinations_table;
source | target
--------+--------
1 | 2
1 | 3
2 | 1
2 | 4
2 | 17
(5 rows)
The query:
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
'SELECT * FROM combinations_table',
factor => 0.5
);
start_vid | end_vid | agg_cost
-----------+---------+----------
1 | 2 | 1
1 | 3 | 6
2 | 1 | 1
2 | 4 | 4
(4 rows)
Parámetros¶
Columna |
Tipo |
Descripción |
---|---|---|
|
Edges SQL as described below |
|
|
Combinations SQL as described below |
|
start vid |
|
Identifier of the starting vertex of the path. |
start vids |
|
Array of identifiers of starting vertices. |
end vid |
|
Identifier of the ending vertex of the path. |
end vids |
|
Array of identifiers of ending vertices. |
Optional parameters¶
Columna |
Tipo |
default |
Descripción |
---|---|---|---|
|
|
|
|
aStar optional Parameters¶
Parámetro |
Tipo |
x Defecto |
Descripción |
---|---|---|---|
|
INTEGER |
5 |
Heuristic number. Current valid values 0~5.
|
|
|
|
Para la manipulación de unidades. math:factor > 0. Ver Factor |
|
|
|
Para resultados menos restringidos. \(epsilon >= 1\). |
Consultas internas¶
Edges SQL¶
Parámetro |
Tipo |
x Defecto |
Descripción |
---|---|---|---|
|
ANY-INTEGER |
Identificador de la arista. |
|
|
ANY-INTEGER |
Identificador del primer vértice extremo de la arista. |
|
|
ANY-INTEGER |
Identificador del segundo vértice extremo de la arista. |
|
|
ANY-NUMERICAL |
Weight of the edge (
|
|
|
ANY-NUMERICAL |
-1 |
Weight of the edge (
|
|
ANY-NUMERICAL |
X coordinate of |
|
|
ANY-NUMERICAL |
Y coordinate of |
|
|
ANY-NUMERICAL |
X coordinate of |
|
|
ANY-NUMERICAL |
Y coordinate of |
Donde:
- ANY-INTEGER
SMALLINT
,INTEGER
,BIGINT
- ANY-NUMERICAL
SMALLINT
,INTEGER
,BIGINT
,REAL
,FLOAT
Combinations SQL¶
Parámetro |
Tipo |
Descripción |
---|---|---|
|
ANY-INTEGER |
Identifier of the departure vertex. |
|
ANY-INTEGER |
Identifier of the arrival vertex. |
Donde:
- ANY-INTEGER
SMALLINT
,INTEGER
,BIGINT
Return Columns¶
Set of (start_vid, end_vid, agg_cost)
Columna |
Tipo |
Descripción |
---|---|---|
|
|
Identificador del vértice inicial. |
|
|
Identificador del vértice final. |
|
|
Coste agregado de |
Additional Examples¶
- Example 1
Demonstration of repeated values are ignored, and result is sorted.
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
ARRAY[5, 3, 4, 3, 3, 4], ARRAY[3, 5, 3, 4]);
start_vid | end_vid | agg_cost
-----------+---------+----------
3 | 4 | 3
3 | 5 | 2
4 | 3 | 1
4 | 5 | 3
5 | 3 | 4
5 | 4 | 3
(6 rows)
- Example 2
Making
start_vids
the same asend_vids
.
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
ARRAY[5, 3, 4], ARRAY[5, 3, 4]);
start_vid | end_vid | agg_cost
-----------+---------+----------
3 | 4 | 3
3 | 5 | 2
4 | 3 | 1
4 | 5 | 3
5 | 3 | 4
5 | 4 | 3
(6 rows)
- Example 3
Manually assigned vertex combinations.
SELECT * FROM pgr_bdAstarCost(
'SELECT id, source, target, cost, reverse_cost, x1, y1, x2, y2
FROM edge_table',
'SELECT * FROM (VALUES (2, 3), (2, 5), (11, 3)) AS combinations (source, target)');
start_vid | end_vid | agg_cost
-----------+---------+----------
2 | 3 | 5
2 | 5 | 1
11 | 3 | 4
(3 rows)
Ver también¶
Índices y tablas