-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComplexTopo.txt
More file actions
38 lines (37 loc) · 1.43 KB
/
Copy pathComplexTopo.txt
File metadata and controls
38 lines (37 loc) · 1.43 KB
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
WeChat: cstutorcs
QQ: 749389476
Email: tutorcs@163.com
# Complex Topology
# NOTE: Node names were chosen randomly and are not meant to indicate any explicit or implied preference.
#
#(-50)---ATT<--(1)--> CMCT <--(12)--DRPA <--(1)--> EGLN --(-2)--> GT
# | ^ | ^ ^ ^ / ^
# | / | \ (0)| \ / |
# | (50) | (2) | ---(2)--- | (0)
# v / | \ v v
# UGA (-8) VZ TWC UC
# ^ \ | ^ | ^
# | (50) | \ (1) |
# | \ | (8) | | (0)
# | v v \ v v
# (0)---GSAT--(-3)-> VONA <---(3)--PTGN ----------(-1)----------> OSU
# ^ / ^ /
# \ / \ /
# --(3)-- ------------(2)-----------
#
# File Format:
# Node, Neighbor, Weight, Neighbor, Weight (repeat as needed)
#
GT,UC,0,EGLN,2
UC,GT,0,OSU,0
OSU,UC,0,PTGN,2
EGLN,GT,-2,DRPA,1
DRPA,EGLN,1,CMCT,12
PTGN,OSU,-1,VONA,3
CMCT,ATT,1,TWC,0
TWC,CMCT,0,VONA,1
VONA,VZ,8,GSAT,3
VZ,ATT,2
ATT,UGA,-50,GSAT,-8,CMCT,1
GSAT,VONA,-3,UGA,0
UGA,ATT,50,GSAT,50