]> mj.ucw.cz Git - ga.git/blob - 2-dinic/dinic-zpetnahrana.eps
Fixed a typo.
[ga.git] / 2-dinic / dinic-zpetnahrana.eps
1 %!PS-Adobe-2.0 EPSF-2.0
2 %%Title: Diagram1.dia
3 %%Creator: Dia v0.94
4 %%CreationDate: Sun Mar 26 18:44:33 2006
5 %%For: bernard
6 %%Orientation: Portrait
7 %%Magnification: 1.0000
8 %%BoundingBox: 0 0 539 452
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 -16.723001 translate
122 %%EndProlog
123
124
125 1.000000 1.000000 1.000000 srgb
126 n 9.362500 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 9.362500 4.500000 0.950000 3.650000 0 360 ellipse cp s
132 1.000000 1.000000 1.000000 srgb
133 n 12.962500 4.500000 0.950000 3.650000 0 360 ellipse f
134 0.100000 slw
135 [] 0 sd
136 [] 0 sd
137 0.000000 0.000000 0.000000 srgb
138 n 12.962500 4.500000 0.950000 3.650000 0 360 ellipse cp s
139 1.000000 1.000000 1.000000 srgb
140 n 16.362500 4.600000 0.950000 3.650000 0 360 ellipse f
141 0.100000 slw
142 [] 0 sd
143 [] 0 sd
144 0.000000 0.000000 0.000000 srgb
145 n 16.362500 4.600000 0.950000 3.650000 0 360 ellipse cp s
146 1.000000 1.000000 1.000000 srgb
147 n 20.016500 4.568000 0.950000 3.650000 0 360 ellipse f
148 0.100000 slw
149 [] 0 sd
150 [] 0 sd
151 0.000000 0.000000 0.000000 srgb
152 n 20.016500 4.568000 0.950000 3.650000 0 360 ellipse cp s
153 1.000000 1.000000 1.000000 srgb
154 n 5.587500 4.400000 0.462500 0.450000 0 360 ellipse f
155 0.100000 slw
156 [] 0 sd
157 [] 0 sd
158 0.000000 0.000000 0.000000 srgb
159 n 5.587500 4.400000 0.462500 0.450000 0 360 ellipse cp s
160 1.000000 1.000000 1.000000 srgb
161 n 23.497500 4.760000 0.450000 0.450000 0 360 ellipse f
162 0.100000 slw
163 [] 0 sd
164 [] 0 sd
165 0.000000 0.000000 0.000000 srgb
166 n 23.497500 4.760000 0.450000 0.450000 0 360 ellipse cp s
167 0.100000 slw
168 [] 0 sd
169 [] 0 sd
170 0 slc
171 n 6.050000 4.400000 m 8.875918 4.485311 l s
172 [] 0 sd
173 0 slj
174 0 slc
175 n 9.250748 4.496626 m 8.743431 4.731425 l 8.875918 4.485311 l 8.758519 4.231653 l ef
176 n 9.250748 4.496626 m 8.743431 4.731425 l 8.875918 4.485311 l 8.758519 4.231653 l cp s
177 0.100000 slw
178 [] 0 sd
179 [] 0 sd
180 0 slc
181 n 9.697600 4.601600 m 12.365524 2.397546 l s
182 [] 0 sd
183 0 slj
184 0 slc
185 n 12.654628 2.158708 m 12.428381 2.669895 l 12.365524 2.397546 l 12.109931 2.284422 l ef
186 n 12.654628 2.158708 m 12.428381 2.669895 l 12.365524 2.397546 l 12.109931 2.284422 l cp s
187 0.100000 slw
188 [] 0 sd
189 [] 0 sd
190 0 slc
191 n 12.833600 2.233600 m 16.005083 4.434923 l s
192 [] 0 sd
193 0 slj
194 0 slc
195 n 16.313146 4.648749 m 15.759844 4.569023 l 16.005083 4.434923 l 16.044946 4.158271 l ef
196 n 16.313146 4.648749 m 15.759844 4.569023 l 16.005083 4.434923 l 16.044946 4.158271 l cp s
197 0.100000 slw
198 [] 0 sd
199 [] 0 sd
200 0 slc
201 n 16.673600 4.665600 m 19.706797 4.665600 l s
202 [] 0 sd
203 0 slj
204 0 slc
205 n 20.081797 4.665600 m 19.581797 4.915600 l 19.706797 4.665600 l 19.581797 4.415600 l ef
206 n 20.081797 4.665600 m 19.581797 4.915600 l 19.706797 4.665600 l 19.581797 4.415600 l cp s
207 0.100000 slw
208 [] 0 sd
209 [] 0 sd
210 0 slc
211 n 20.513600 4.729600 m 22.560732 4.754160 l s
212 [] 0 sd
213 0 slj
214 0 slc
215 n 22.935705 4.758659 m 22.432742 5.002643 l 22.560732 4.754160 l 22.438740 4.502679 l ef
216 n 22.935705 4.758659 m 22.432742 5.002643 l 22.560732 4.754160 l 22.438740 4.502679 l cp s
217 gsave 5.000000 6.562500 translate 0.035278 -0.035278 scale
218 start_ol
219 5729 6016 moveto
220 5533 5056 lineto
221 5124 5280 4670 5392 conicto
222 4216 5504 3734 5504 conicto
223 2921 5504 2452 5229 conicto
224 1984 4954 1984 4482 conicto
225 1984 3933 3088 3639 conicto
226 3172 3617 3213 3606 conicto
227 3548 3506 lineto
228 4567 3221 4907 2908 conicto
229 5248 2595 5248 2053 conicto
230 5248 1059 4456 433 conicto
231 3665 -192 2384 -192 conicto
232 1886 -192 1338 -98 conicto
233 790 -5 130 192 conicto
234 331 1280 lineto
235 896 997 1444 850 conicto
236 1992 704 2496 704 conicto
237 3263 704 3743 1023 conicto
238 4224 1343 4224 1833 conicto
239 4224 2361 2963 2686 conicto
240 2854 2714 lineto
241 2496 2802 lineto
242 1700 3010 1330 3349 conicto
243 960 3689 960 4217 conicto
244 960 5221 1716 5810 conicto
245 2472 6400 3771 6400 conicto
246 4283 6400 4769 6304 conicto
247 5256 6208 5729 6016 conicto
248 end_ol grestore 
249 gsave 23.440000 6.827500 translate 0.035278 -0.035278 scale
250 start_ol
251 4867 6272 moveto
252 4711 5440 lineto
253 2658 5440 lineto
254 1992 2036 lineto
255 1958 1846 1941 1717 conicto
256 1925 1589 1925 1516 conicto
257 1925 1157 2140 994 conicto
258 2356 832 2831 832 conicto
259 3872 832 lineto
260 3698 0 lineto
261 2714 0 lineto
262 1796 0 1346 353 conicto
263 896 706 896 1423 conicto
264 896 1551 912 1702 conicto
265 929 1854 963 2036 conicto
266 1628 5440 lineto
267 752 5440 lineto
268 918 6272 lineto
269 1774 6272 lineto
270 2121 8064 lineto
271 3150 8064 lineto
272 2809 6272 lineto
273 4867 6272 lineto
274 end_ol grestore 
275 1.000000 1.000000 1.000000 srgb
276 n 9.362500 12.891001 0.950000 3.650000 0 360 ellipse f
277 0.100000 slw
278 [] 0 sd
279 [] 0 sd
280 0.000000 0.000000 0.000000 srgb
281 n 9.362500 12.891001 0.950000 3.650000 0 360 ellipse cp s
282 1.000000 1.000000 1.000000 srgb
283 n 12.962500 12.891001 0.950000 3.650000 0 360 ellipse f
284 0.100000 slw
285 [] 0 sd
286 [] 0 sd
287 0.000000 0.000000 0.000000 srgb
288 n 12.962500 12.891001 0.950000 3.650000 0 360 ellipse cp s
289 1.000000 1.000000 1.000000 srgb
290 n 16.362500 12.991001 0.950000 3.650000 0 360 ellipse f
291 0.100000 slw
292 [] 0 sd
293 [] 0 sd
294 0.000000 0.000000 0.000000 srgb
295 n 16.362500 12.991001 0.950000 3.650000 0 360 ellipse cp s
296 1.000000 1.000000 1.000000 srgb
297 n 20.080500 13.023001 0.950000 3.650000 0 360 ellipse f
298 0.100000 slw
299 [] 0 sd
300 [] 0 sd
301 0.000000 0.000000 0.000000 srgb
302 n 20.080500 13.023001 0.950000 3.650000 0 360 ellipse cp s
303 1.000000 1.000000 1.000000 srgb
304 n 5.587500 12.791001 0.462500 0.450000 0 360 ellipse f
305 0.100000 slw
306 [] 0 sd
307 [] 0 sd
308 0.000000 0.000000 0.000000 srgb
309 n 5.587500 12.791001 0.462500 0.450000 0 360 ellipse cp s
310 1.000000 1.000000 1.000000 srgb
311 n 23.497500 13.151001 0.450000 0.450000 0 360 ellipse f
312 0.100000 slw
313 [] 0 sd
314 [] 0 sd
315 0.000000 0.000000 0.000000 srgb
316 n 23.497500 13.151001 0.450000 0.450000 0 360 ellipse cp s
317 0.100000 slw
318 [] 0 sd
319 [] 0 sd
320 0 slc
321 n 6.050000 12.791001 m 8.875918 12.876311 l s
322 [] 0 sd
323 0 slj
324 0 slc
325 n 9.250748 12.887627 m 8.743431 13.122426 l 8.875918 12.876311 l 8.758519 12.622653 l ef
326 n 9.250748 12.887627 m 8.743431 13.122426 l 8.875918 12.876311 l 8.758519 12.622653 l cp s
327 0.100000 slw
328 [] 0 sd
329 [] 0 sd
330 0 slc
331 n 9.697600 12.992601 m 12.365524 10.788547 l s
332 [] 0 sd
333 0 slj
334 0 slc
335 n 12.654628 10.549708 m 12.428381 11.060896 l 12.365524 10.788547 l 12.109931 10.675423 l ef
336 n 12.654628 10.549708 m 12.428381 11.060896 l 12.365524 10.788547 l 12.109931 10.675423 l cp s
337 0.100000 slw
338 [] 0 sd
339 [] 0 sd
340 0 slc
341 n 16.545600 13.056601 m 19.593719 13.027628 l s
342 [] 0 sd
343 0 slj
344 0 slc
345 n 19.968702 13.024063 m 19.471100 13.278804 l 19.593719 13.027628 l 19.466348 12.778827 l ef
346 n 19.968702 13.024063 m 19.471100 13.278804 l 19.593719 13.027628 l 19.466348 12.778827 l cp s
347 0.100000 slw
348 [] 0 sd
349 [] 0 sd
350 0 slc
351 n 20.513600 13.120601 m 22.560732 13.145161 l s
352 [] 0 sd
353 0 slj
354 0 slc
355 n 22.935705 13.149659 m 22.432742 13.393643 l 22.560732 13.145161 l 22.438740 12.893679 l ef
356 n 22.935705 13.149659 m 22.432742 13.393643 l 22.560732 13.145161 l 22.438740 12.893679 l cp s
357 gsave 5.000000 14.953501 translate 0.035278 -0.035278 scale
358 start_ol
359 5729 6016 moveto
360 5533 5056 lineto
361 5124 5280 4670 5392 conicto
362 4216 5504 3734 5504 conicto
363 2921 5504 2452 5229 conicto
364 1984 4954 1984 4482 conicto
365 1984 3933 3088 3639 conicto
366 3172 3617 3213 3606 conicto
367 3548 3506 lineto
368 4567 3221 4907 2908 conicto
369 5248 2595 5248 2053 conicto
370 5248 1059 4456 433 conicto
371 3665 -192 2384 -192 conicto
372 1886 -192 1338 -98 conicto
373 790 -5 130 192 conicto
374 331 1280 lineto
375 896 997 1444 850 conicto
376 1992 704 2496 704 conicto
377 3263 704 3743 1023 conicto
378 4224 1343 4224 1833 conicto
379 4224 2361 2963 2686 conicto
380 2854 2714 lineto
381 2496 2802 lineto
382 1700 3010 1330 3349 conicto
383 960 3689 960 4217 conicto
384 960 5221 1716 5810 conicto
385 2472 6400 3771 6400 conicto
386 4283 6400 4769 6304 conicto
387 5256 6208 5729 6016 conicto
388 end_ol grestore 
389 gsave 23.440000 15.218501 translate 0.035278 -0.035278 scale
390 start_ol
391 4867 6272 moveto
392 4711 5440 lineto
393 2658 5440 lineto
394 1992 2036 lineto
395 1958 1846 1941 1717 conicto
396 1925 1589 1925 1516 conicto
397 1925 1157 2140 994 conicto
398 2356 832 2831 832 conicto
399 3872 832 lineto
400 3698 0 lineto
401 2714 0 lineto
402 1796 0 1346 353 conicto
403 896 706 896 1423 conicto
404 896 1551 912 1702 conicto
405 929 1854 963 2036 conicto
406 1628 5440 lineto
407 752 5440 lineto
408 918 6272 lineto
409 1774 6272 lineto
410 2121 8064 lineto
411 3150 8064 lineto
412 2809 6272 lineto
413 4867 6272 lineto
414 end_ol grestore 
415 0.100000 slw
416 [] 0 sd
417 [] 0 sd
418 0 slc
419 0.975875 0.112764 0.032090 srgb
420 n 16.163919 9.649882 3.439993 3.439993 87.657866 147.036577 ellipse s
421 [] 0 sd
422 0 slj
423 0 slc
424 n 13.132801 11.175720 m 13.556586 11.540284 l 13.277703 11.521594 l 13.095421 11.733486 l ef
425 n 13.132801 11.175720 m 13.556586 11.540284 l 13.277703 11.521594 l 13.095421 11.733486 l cp s
426 showpage