Skip to content

Commit ce42f3a

Browse files
wifi:)wifi:)
authored andcommitted
Adds basic structure of test for king and minimum degree
1 parent 68266d7 commit ce42f3a

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- CopyRight(c) pgRouting developers
2+
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
3+
/* -- q1 */
4+
SELECT * FROM pgr_kingOrdering(
5+
'SELECT id, source, target, cost, reverse_cost FROM edges'
6+
);
7+
/* -- q2 */

docqueries/ordering/kingOrdering.result

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- CopyRight(c) pgRouting developers
2+
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
3+
/* -- q1 */
4+
SELECT * FROM pgr_minDegreeOrdering(
5+
'SELECT id, source, target, cost, reverse_cost FROM edges'
6+
);
7+
/* -- q2 */

docqueries/ordering/minDegreeOrdering.result

Whitespace-only changes.

docqueries/ordering/test.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
'files' => [qw(
66
cuthillMckeeOrdering.pg
77
topologicalSort.pg
8+
minDegreeOrdering.pg
9+
kingOrdering.pg
810
)]
911
},
1012

0 commit comments

Comments
 (0)