Skip to content

Commit

Permalink
GLE-1576 adding weighted graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
katinar committed Mar 19, 2024
1 parent e9a6201 commit 8d2a2c0
Show file tree
Hide file tree
Showing 21 changed files with 503 additions and 0 deletions.
36 changes: 36 additions & 0 deletions tests/data/unweighted edges/complete_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
A,A
A,B
A,C
A,D
A,E
A,F
A,G
A,H
B,B
B,C
B,D
B,E
B,F
B,G
B,H
C,C
C,D
C,E
C,F
C,G
C,H
D,D
D,E
D,F
D,G
D,H
E,E
E,F
E,G
E,H
F,F
F,G
F,H
G,G
G,H
H,H
64 changes: 64 additions & 0 deletions tests/data/unweighted edges/complete_edges_directed.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
A,A
A,B
A,C
A,D
A,E
A,F
A,G
A,H
B,B
B,C
B,D
B,E
B,F
B,G
B,H
C,C
C,D
C,E
C,F
C,G
C,H
D,D
D,E
D,F
D,G
D,H
E,E
E,F
E,G
E,H
F,F
F,G
F,H
G,G
G,H
H,H
B,A
C,A
D,A
E,A
F,A
G,A
H,A
C,B
D,B
E,B
F,B
G,B
H,B
D,C
E,C
F,C
G,C
H,C
E,D
F,D
G,D
H,D
F,E
G,E
H,E
G,F
H,F
H,G
20 changes: 20 additions & 0 deletions tests/data/unweighted edges/dag_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
C,A
L,E
O,T
S,D
R,D
D,P
P,C
B,K
C,N
D,J
J,A
E,I
L,M
G,F
A,G
A,H
C,J
C,H
D,C
Q,B
Empty file.
22 changes: 22 additions & 0 deletions tests/data/unweighted edges/hubspoke_connected_spoke_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
A,B
A,C
A,D
B,C
B,D
C,D
A,E
A,F
A,G
A,H
B,I
B,J
B,K
B,L
C,M
C,N
C,O
C,P
D,Q
D,R
D,S
D,T
19 changes: 19 additions & 0 deletions tests/data/unweighted edges/hubspoke_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
A,B
A,C
A,D
A,E
A,F
A,G
A,H
A,I
A,J
A,K
A,L
A,M
A,N
A,O
A,P
A,Q
A,R
A,S
A,T
19 changes: 19 additions & 0 deletions tests/data/unweighted edges/line_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
A,B
B,C
C,D
D,E
E,F
F,G
G,H
H,I
I,J
J,K
K,L
L,M
M,N
N,O
O,P
P,Q
Q,R
R,S
S,T
22 changes: 22 additions & 0 deletions tests/data/unweighted edges/mulithub_shared_spoke_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
A,B
A,C
A,D
B,C
B,D
C,D
A,E
A,F
A,G
A,H
B,I
B,J
B,K
B,L
C,M
C,N
C,O
C,P
D,Q
D,R
D,S
D,T
20 changes: 20 additions & 0 deletions tests/data/unweighted edges/ring_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
A,B
B,C
C,D
D,E
E,F
F,G
G,H
H,I
I,J
J,K
K,L
L,M
M,N
N,O
O,P
P,Q
Q,R
R,S
S,T
T,A
19 changes: 19 additions & 0 deletions tests/data/unweighted edges/tree_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
A,B
A,C
B,D
B,E
C,F
C,G
D,H
D,I
E,J
E,K
F,L
F,M
G,N
G,O
H,P
H,Q
I,R
I,S
J,T
36 changes: 36 additions & 0 deletions tests/data/weighted edges/complete_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
A,A,2
A,B,5
A,C,24
A,D,17
A,E,15
A,F,-7
A,G,-2
A,H,14
B,B,-21
B,C,23
B,D,29
B,E,1
B,F,0
B,G,9
B,H,11
C,C,18
C,D,8
C,E,-22
C,F,-20
C,G,4
C,H,46
D,D,-5
D,E,21
D,F,26
D,G,27
D,H,-13
E,E,3
E,F,2
E,G,0
E,H,10
F,F,-6
F,G,9
F,H,22
G,G,9
G,H,19
H,H,0
64 changes: 64 additions & 0 deletions tests/data/weighted edges/complete_edges_directed.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
A,A,2
A,B,5
A,C,24
A,D,17
A,E,15
A,F,-7
A,G,-2
A,H,14
B,B,-21
B,C,23
B,D,29
B,E,1
B,F,0
B,G,9
B,H,11
C,C,18
C,D,8
C,E,-22
C,F,-20
C,G,4
C,H,46
D,D,-5
D,E,21
D,F,26
D,G,27
D,H,-13
E,E,2
E,F,2
E,G,0
E,H,3
F,F,10
F,G,-6
F,H,22
G,G,19
G,H,0
H,H,7
B,A,-1
C,A,5
D,A,28
E,A,43
F,A,4
G,A,-10
H,A,8
C,B,22
D,B,53
E,B,0
F,B,-12
G,B,17
H,B,11
D,C,31
E,C,2
F,C,1
G,C,25
H,C,-8
E,D,15
F,D,12
G,D,29
H,D,-25
F,E,49
G,E,31
H,E,-16
G,F,3
H,F,3
H,G,45
20 changes: 20 additions & 0 deletions tests/data/weighted edges/dag_edges.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
C,A,3
L,E,-10
O,T,22
S,D,10
R,D,9
D,P,-2
P,C,5
B,K,-11
C,N,6
D,J,40
J,A,5
E,I,4
L,M,17
G,F,7
A,G,-15
A,H,18
C,J,0
C,H,1
D,C,15
Q,B,0
Empty file.
Loading

0 comments on commit 8d2a2c0

Please sign in to comment.