I am creating a dot file with my perl script. here are the subgraphs that contain the same node. eg:
subgraph {AA-> BB-> cc;}
subgraph {dd-> BB-> hey;}
I know that these subgraphs use the same namespace, so the output of my result is a mess.
In each subgraph, I can make them unique, for example bb and bb_1 below,
subgraph {AA-> BB-> cc; bb_1-> dd;}
but it's hard to make all node in all subgraphs unique.
please, help. if there are some ways to make each subgraph "strict" or use a different namespace?
source share