Created
          November 22, 2012 06:37 
        
      - 
      
 - 
        
Save hpcx82/4129699 to your computer and use it in GitHub Desktop.  
    graphviz dot subgraph example
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | digraph | |
| { | |
| subgraph cluster_solution | |
| { | |
| label="solution" | |
| App; | |
| foo; | |
| baz; | |
| } | |
| App -> foo; | |
| foo -> baz; | |
| foo -> bar; | |
| baz -> bar; | |
| baz -> basebaz; | |
| subgraph cluster_basebar | |
| { | |
| label="basebar" | |
| trunk; | |
| trunk51; | |
| } | |
| bar-> trunk; | |
| basebaz->trunk51; | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment