stepSubGraph.writeDOT( stepGraphName );
for( int i = 0; i < nodeSubGraphs.size(); i++ )
{
ElementGraph nodeGraph = nodeSubGraphs.get( i );
String nodeGraphName = String.format( "%s/%04d-%04d-step-node-sub-graph.dot", rootPath, stepCount, i );
nodeGraph.writeDOT( nodeGraphName );
List<? extends ElementGraph> pipelineGraphs = pipelineSubGraphsMap.get( nodeGraph );
if( pipelineGraphs == null )
continue;
for( int j = 0; j < pipelineGraphs.size(); j++ )
{
ElementGraph pipelineGraph = pipelineGraphs.get( j );
String pipelineGraphName = String.format( "%s/%04d-%04d-%04d-step-node-pipeline-sub-graph.dot", rootPath, stepCount, i, j );
pipelineGraph.writeDOT( pipelineGraphName );
}
}
}