forked from vigneshkmr84/Distributed-Minimum-Spanning-Tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.txt
More file actions
30 lines (30 loc) · 640 Bytes
/
config.txt
File metadata and controls
30 lines (30 loc) · 640 Bytes
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
#
# Configuration file for CS 6380 Project 2 (Spring 2023)
#
# As per the “shell” convention, anything following a hash sign is
# a comment and should be ignored by the parser.
#
# Number of nodes
7
# Here we list the individual nodes
#
# Format is:
# UID Hostname Port
5 dc02.utdallas.edu 5234
200 dc03.utdallas.edu 6213
8 dc04.utdallas.edu 4223
184 dc05.utdallas.edu 3262
9 dc02.utdallas.edu 4293
37 dc07.utdallas.edu 7245
78 dc08.utdallas.edu 9286
# List of edges and their weight, one per line. An edge is denoted
# by (smaller uid, larger uid)
(5,200) 5
(5,8) 3
(5,37) 10
(8,184) 1
(8,78) 3
(184,200) 3
(37,78) 1
(9,78) 2
(9,200) 5