Changeset 41:73fdafd843d9 in lemon-tutorial
- Timestamp:
 - 02/21/10 19:02:08 (16 years ago)
 - Branch:
 - default
 - Phase:
 - public
 - Files:
 - 
          
- 2 added
 - 2 edited
 
- 
          Makefile.in (modified) (3 diffs)
 - 
          adaptors.dox (modified) (3 diffs)
 - 
          images/adaptors1.eps (added)
 - 
          images/adaptors2.eps (added)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
Makefile.in
r40 r41 3 3 EPS_IMAGES18 = 4 4 5 EPS_IMAGES27 = \ 5 EPS_IMAGES27 = 6 7 EPS_IMAGES36 = \ 8 adaptors1.eps \ 9 adaptors2.eps \ 6 10 splitnodes1.eps \ 7 11 splitnodes2.eps … … 9 13 EPS_IMAGES = \ 10 14 $(EPS_IMAGES18) \ 11 $(EPS_IMAGES27) 15 $(EPS_IMAGES27) \ 16 $(EPS_IMAGES36) 12 17 13 18 PNG_IMAGES = \ … … 27 32 -mkdir -p gen-images 28 33 $(GS_COMMAND) -sDEVICE=pngalpha -r27 -sOutputFile=$@ $< 34 35 $(EPS_IMAGES36:%.eps=gen-images/%.png): gen-images/%.png: images/%.eps 36 -mkdir -p gen-images 37 $(GS_COMMAND) -sDEVICE=pngalpha -r36 -sOutputFile=$@ $< 29 38 30 39 html: Doxyfile-gen $(PNG_IMAGES)  - 
        
adaptors.dox
r40 r41 32 32 In such cases, the LEMON \e graph \e adaptor \e classes could be used. 33 33 34 35 34 [SEC]sec_reverse_digraph[SEC] Reverse Oriented Digraph 36 35 … … 179 178 or in other words, hiding nodes and/or arcs from a graph. 180 179 LEMON provides several convenient adaptors for these purposes. 180 In the following picture, a \ref SubDigraph adaptor is applied to an 181 underlying digraph structure to obtain a suitable subgraph. 182 183 \image html adaptors1.png 184 \image latex adaptors1.eps "SubDigraph adaptor" width=\textwidth 181 185 182 186 \ref FilterArcs can be used when some arcs have to be hidden from a digraph. … … 326 330 \endcode 327 331 332 Sine the adaptor classes conform to the \ref graph_concepts "graph concepts", 333 we can even apply an adaptor to another one. 334 The following image illustrates a situation when a \ref SubDigraph and an 335 \ref Undirector adaptor is applied on a digraph. 336 337 \image html adaptors2.png 338 \image latex adaptors2.eps "Arc disjoint paths" width=\textwidth 339 328 340 LEMON also provides some more complex adaptors, for 329 341 instance, \ref SplitNodes, which can be used for splitting each node of a  
Note: See TracChangeset
          for help on using the changeset viewer.
      
