Skip to content

Commit

Permalink
a change???
Browse files Browse the repository at this point in the history
  • Loading branch information
gonsie committed Nov 3, 2014
1 parent 7b9ed68 commit 82d550b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion file_writer.py
Expand Up @@ -103,7 +103,7 @@ def generateRoss(filename_prefix, gate_types, all_gates):
inlist.append((-1, '-1', '-1'))
while len(outlist) < g.type.counts['output']:
outlist.append((-1, '-1', '-1'))
instr = ' '.join([' '.join(p[1:]) for p in inlist])
instr = ' '.join([p[1] for p in inlist])
outstr = ' '.join([' '.join(p[1:]) for p in outlist])
f.write(instr)
# fanout special case
Expand Down

0 comments on commit 82d550b

Please sign in to comment.