1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/*PGR-GNU*****************************************************************
Copyright (c) 2016 pgRouting developers
Mail: project@pgrouting.org
Copyright (c) 2016 Celia Virginia Vergara Castillo
mail: vicky_vergara@hotmail.com
------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
********************************************************************PGR-GNU*/
----------------
----------------
-- tsp
----------------
----------------
-----------------------
-- _pgr_unnest_matrix
-----------------------
CREATE OR REPLACE FUNCTION _pgr_unnest_matrix
(matrix float8[][],
OUT start_vid integer,
OUT end_vid integer,
out agg_cost float8)
RETURNS SETOF record AS
$body$
DECLARE
m float8[];
BEGIN
start_vid = 1;
foreach m slice 1 in ARRAY matrix
LOOP
end_vid = 1;
foreach agg_cost in ARRAY m
LOOP
RETURN next;
end_vid = end_vid + 1;
END LOOP;
start_vid = start_vid + 1;
END LOOP;
END;
$body$
language plpgsql volatile STRICT cost 500 ROWS 50;
CREATE OR REPLACE FUNCTION pgr_tsp
(matrix float8[][],
startpt INTEGER,
endpt INTEGER DEFAULT -1,
OUT seq INTEGER,
OUT id INTEGER)
RETURNS SETOF record AS
$body$
DECLARE
table_sql TEXT;
debuglevel TEXT;
BEGIN
RAISE NOTICE 'Deprecated Signature pgr_tsp(float8[][], integer, integer)';
CREATE TEMP TABLE ___tmp2 ON COMMIT DROP AS SELECT * FROM _pgr_unnest_matrix( matrix );
startpt := startpt + 1;
IF endpt = -1 THEN endpt := startpt;
END IF;
RETURN QUERY
WITH
result AS (
SELECT * FROM pgr_TSP(
$$SELECT * FROM ___tmp2 $$,
startpt, endpt,
tries_per_temperature := 500 :: INTEGER,
max_changes_per_temperature := 30 :: INTEGER,
max_consecutive_non_changes := 500 :: INTEGER,
randomize:=false)
)
SELECT (row_number() over(ORDER BY result.seq) - 1)::INTEGER AS seq, (result.node - 1)::INTEGER AS id
FROM result WHERE NOT(result.node = startpt AND result.seq != 1);
DROP TABLE ___tmp2;
END;
$body$
language plpgsql volatile STRICT cost 500 ROWS 50;
-- COMMENTS
COMMENT ON FUNCTION _pgr_unnest_matrix(FLOAT[][])
IS 'DEPRECATED';
COMMENT ON FUNCTION pgr_tsp(FLOAT[][], INTEGER, INTEGER)
IS 'pgr_tsp
- Parameters
- Matrix
- startpt
- endpt
- Documentation:
- ${PGROUTING_DOC_LINK}/pgr_tsp.html
';
|