Tagged Questions
1
vote
1answer
375 views
Generate all possible subgraphs of a directed graph keeping the number of vertices
I have two lists of vertices: V and S.
I would like to generate all possible directed graphs from V and S so, that each vertex from V has only one out-edge and exactly one in-edge, and each vertex ...
4
votes
2answers
1k views
How can I get dot to draw connected subgraphs side by side?
This is what the generated graph looks currently:
And here is the code for this:
digraph {
rankdir=TB;
subgraph cluster01 {
label="1.fázis"
aSTART;
node [shape = doublecircle]; ...
36
votes
4answers
13k views
GraphViz - How to connect subgraphs?
In the DOT language for GraphViz, I'm trying to represent a dependency diagram. I need to be able to have nodes inside a container and to be able to make nodes and/or containers dependent on other ...