]> mj.ucw.cz Git - ga.git/blob - 2-dinic/dinic-vrcholrez.eps
Importing initial version.
[ga.git] / 2-dinic / dinic-vrcholrez.eps
1 %!PS-Adobe-2.0 EPSF-2.0
2 %%Title: Diagram1.dia
3 %%Creator: Dia v0.94
4 %%CreationDate: Sun Mar 26 18:47:25 2006
5 %%For: bernard
6 %%Orientation: Portrait
7 %%Magnification: 1.0000
8 %%BoundingBox: 0 0 195 210
9 %%BeginSetup
10 %%EndSetup
11 %%EndComments
12 %%BeginProlog
13 [ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
14 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
15 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
16 /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
17 /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one
18 /two /three /four /five /six /seven /eight /nine /colon /semicolon
19 /less /equal /greater /question /at /A /B /C /D /E
20 /F /G /H /I /J /K /L /M /N /O
21 /P /Q /R /S /T /U /V /W /X /Y
22 /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c
23 /d /e /f /g /h /i /j /k /l /m
24 /n /o /p /q /r /s /t /u /v /w
25 /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef
26 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
27 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
28 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
29 /space /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright
30 /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior
31 /acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf
32 /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
33 /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde
34 /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex
35 /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring
36 /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
37 /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave
38 /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] /isolatin1encoding exch def
39 /cp {closepath} bind def
40 /c {curveto} bind def
41 /f {fill} bind def
42 /a {arc} bind def
43 /ef {eofill} bind def
44 /ex {exch} bind def
45 /gr {grestore} bind def
46 /gs {gsave} bind def
47 /sa {save} bind def
48 /rs {restore} bind def
49 /l {lineto} bind def
50 /m {moveto} bind def
51 /rm {rmoveto} bind def
52 /n {newpath} bind def
53 /s {stroke} bind def
54 /sh {show} bind def
55 /slc {setlinecap} bind def
56 /slj {setlinejoin} bind def
57 /slw {setlinewidth} bind def
58 /srgb {setrgbcolor} bind def
59 /rot {rotate} bind def
60 /sc {scale} bind def
61 /sd {setdash} bind def
62 /ff {findfont} bind def
63 /sf {setfont} bind def
64 /scf {scalefont} bind def
65 /sw {stringwidth pop} bind def
66 /tr {translate} bind def
67
68 /ellipsedict 8 dict def
69 ellipsedict /mtrx matrix put
70 /ellipse
71 { ellipsedict begin
72    /endangle exch def
73    /startangle exch def
74    /yrad exch def
75    /xrad exch def
76    /y exch def
77    /x exch def   /savematrix mtrx currentmatrix def
78    x y tr xrad yrad sc
79    0 0 1 startangle endangle arc
80    savematrix setmatrix
81    end
82 } def
83
84 /mergeprocs {
85 dup length
86 3 -1 roll
87 dup
88 length
89 dup
90 5 1 roll
91 3 -1 roll
92 add
93 array cvx
94 dup
95 3 -1 roll
96 0 exch
97 putinterval
98 dup
99 4 2 roll
100 putinterval
101 } bind def
102 /dpi_x 300 def
103 /dpi_y 300 def
104 /conicto {
105     /to_y exch def
106     /to_x exch def
107     /conic_cntrl_y exch def
108     /conic_cntrl_x exch def
109     currentpoint
110     /p0_y exch def
111     /p0_x exch def
112     /p1_x p0_x conic_cntrl_x p0_x sub 2 3 div mul add def
113     /p1_y p0_y conic_cntrl_y p0_y sub 2 3 div mul add def
114     /p2_x p1_x to_x p0_x sub 1 3 div mul add def
115     /p2_y p1_y to_y p0_y sub 1 3 div mul add def
116     p1_x p1_y p2_x p2_y to_x to_y curveto
117 } bind def
118 /start_ol { gsave 1.1 dpi_x div dup scale} bind def
119 /end_ol { closepath fill grestore } bind def
120 28.346000 -28.346000 scale
121 -5.000000 -8.200000 translate
122 %%EndProlog
123
124
125 1.000000 1.000000 1.000000 srgb
126 n 7.862959 4.500000 0.950000 3.650000 0 360 ellipse f
127 0.100000 slw
128 [] 0 sd
129 [] 0 sd
130 0.000000 0.000000 0.000000 srgb
131 n 7.862959 4.500000 0.950000 3.650000 0 360 ellipse cp s
132 0.100000 slw
133 [] 0 sd
134 [] 0 sd
135 0 slc
136 n 5.070710 1.819060 m 7.498637 4.266877 l s
137 [] 0 sd
138 0 slj
139 0 slc
140 n 7.762718 4.533121 m 7.233114 4.354183 l 7.498637 4.266877 l 7.588106 4.002074 l ef
141 n 7.762718 4.533121 m 7.233114 4.354183 l 7.498637 4.266877 l 7.588106 4.002074 l cp s
142 0.100000 slw
143 [] 0 sd
144 [] 0 sd
145 0 slc
146 1.000000 0.000000 0.000000 srgb
147 n 5.070710 6.980940 m 7.247257 6.986301 l s
148 [] 0 sd
149 0 slj
150 0 slc
151 n 7.622256 6.987225 m 7.121641 7.235992 l 7.247257 6.986301 l 7.122873 6.735994 l ef
152 n 7.622256 6.987225 m 7.121641 7.235992 l 7.247257 6.986301 l 7.122873 6.735994 l cp s
153 0.100000 slw
154 [] 0 sd
155 [] 0 sd
156 0 slc
157 n 5.348959 4.400000 m 7.416489 2.400883 l s
158 [] 0 sd
159 0 slj
160 0 slc
161 n 7.686076 2.140216 m 7.500404 2.667498 l 7.416489 2.400883 l 7.152848 2.308047 l ef
162 n 7.686076 2.140216 m 7.500404 2.667498 l 7.416489 2.400883 l 7.152848 2.308047 l cp s
163 0.100000 slw
164 [] 0 sd
165 [] 0 sd
166 0 slc
167 0.000000 0.000000 0.000000 srgb
168 n 7.905600 2.233600 m 11.130797 2.233600 l s
169 [] 0 sd
170 0 slj
171 0 slc
172 n 11.505797 2.233600 m 11.005797 2.483600 l 11.130797 2.233600 l 11.005797 1.983600 l ef
173 n 11.505797 2.233600 m 11.005797 2.483600 l 11.130797 2.233600 l 11.005797 1.983600 l cp s
174 0.100000 slw
175 [] 0 sd
176 [] 0 sd
177 0 slc
178 1.000000 0.000000 0.000000 srgb
179 n 8.033600 4.601600 m 10.947342 4.546675 l s
180 [] 0 sd
181 0 slj
182 0 slc
183 n 11.322275 4.539607 m 10.827076 4.798986 l 10.947342 4.546675 l 10.817652 4.299075 l ef
184 n 11.322275 4.539607 m 10.827076 4.798986 l 10.947342 4.546675 l 10.817652 4.299075 l cp s
185 0.100000 slw
186 [] 0 sd
187 [] 0 sd
188 0 slc
189 0.000000 0.000000 0.000000 srgb
190 n 8.097600 7.033600 m 11.322270 7.058710 l s
191 [] 0 sd
192 0 slj
193 0 slc
194 n 11.697259 7.061629 m 11.195327 7.307729 l 11.322270 7.058710 l 11.199220 6.807744 l ef
195 n 11.697259 7.061629 m 11.195327 7.307729 l 11.322270 7.058710 l 11.199220 6.807744 l cp s
196 0.100000 slw
197 [] 0 sd
198 [] 0 sd
199 0 slc
200 n 8.033600 7.033600 m 10.999634 5.125842 l s
201 [] 0 sd
202 0 slj
203 0 slc
204 n 11.315027 4.922981 m 11.029744 5.403724 l 10.999634 5.125842 l 10.759263 4.983201 l ef
205 n 11.315027 4.922981 m 11.029744 5.403724 l 10.999634 5.125842 l 10.759263 4.983201 l cp s
206 0.100000 slw
207 [] 0 sd
208 [] 0 sd
209 0 slc
210 n 7.905600 2.553600 m 8.001218 3.987875 l s
211 [] 0 sd
212 0 slj
213 0 slc
214 n 8.026163 4.362044 m 7.743457 3.879781 l 8.001218 3.987875 l 8.242350 3.846522 l ef
215 n 8.026163 4.362044 m 7.743457 3.879781 l 8.001218 3.987875 l 8.242350 3.846522 l cp s
216 0.100000 slw
217 [] 0 sd
218 [] 0 sd
219 0 slc
220 n 5.281600 6.777600 m 7.401265 5.038387 l s
221 [] 0 sd
222 0 slj
223 0 slc
224 n 7.691168 4.800519 m 7.463210 5.310945 l 7.401265 5.038387 l 7.146052 4.924409 l ef
225 n 7.691168 4.800519 m 7.463210 5.310945 l 7.401265 5.038387 l 7.146052 4.924409 l cp s
226 showpage