-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheuler.graf
More file actions
30 lines (28 loc) · 752 Bytes
/
euler.graf
File metadata and controls
30 lines (28 loc) · 752 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
0
4
5
0
-1
0#329,4118#282,2086##
1#717,647#493,865##
2#232,9412#592,0245##
3#691,7647#760,7362##
0#0#1##
1#1#3##
2#3#2##
3#2#0##
4#0#3##
Saved on: 03.01.2008 21:59:43
/*
* Structure of a valid '.graf' or '.txt' file:
*
* 1st line: 0|1 - orientation (1 for oriented)
* 2nd line: <nr of vertices>
* 3rd line: <nr of edges>
* 4th line: <nr of finish points>
* 5th line: <index of start point (base 0; -1 for none)>
* next <nr of vertices> lines: <vertex index (base 0)> '#' <vertex X wrt 1000> '#' <vertex Y wrt 1000> '#' <vertex name> '#'
* next <nr of edges> lines: <edge index (base 0)> '#' <source vertex index (base 0)> '#' <destination vertex index (base 0)> '#' <edge name> '#'
* next <nr of finish points> lines: <vertex index (base 0)>
*
*/