Skip to content

Commit

Permalink
LCI v1.8 - sources and targets made bolder
Browse files Browse the repository at this point in the history
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@172 ab42f6e0-554d-0410-b580-99e487e6eeb2
  • Loading branch information
grammarware committed Aug 16, 2008
1 parent 64ca267 commit a85c978
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions topics/convergence/lci/lci.py
Expand Up @@ -146,20 +146,20 @@ def makegraph():

def dumpgraph(df):
dot = open(df+'_large.dot','w')
dot.write('digraph generated{ {rank=same; node [shape=ellipse];')
dot.write('digraph generated{ {rank=same; node [shape=ellipse, style=bold];')
for x in sources.keys():
dot.write(quote(x))
if x in failednode:
dot.write(' [color=red]')
dot.write(';')
dot.write('}\n')
dot.write('node [shape=octagon];\n')
dot.write('node [shape=octagon, style=bold];\n')
for x in targets.keys():
dot.write(quote(x))
if x in failednode:
dot.write(' [color=red]')
dot.write(';')
dot.write('node [shape=box];\n')
dot.write('node [shape=box, style=solid];\n')
nodezz=[]
for arc in graph_big:
dot.write(quote(arc[0])+'->'+quote(arc[1]))
Expand Down

0 comments on commit a85c978

Please sign in to comment.