Skip to content
Snippets Groups Projects
Commit 8d613005 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Updated print statement spaces.

parent c81fa74a
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,6 @@ def optimize(program, verbose=0):
# Print results
if verbose:
print 'Original statements: %d' % o
print 'Statements removed: %d (%d%%)' \
% (o - b, int((o - b) / float(b) * 100))
print 'Original statements: %d' % o
print 'Statements removed: %d (%d%%)'
% (o - b, int((o - b) / float(b) * 100))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment