Commit 8d613005 authored by Taddeus Kroes's avatar Taddeus Kroes

Updated print statement spaces.

parent c81fa74a
......@@ -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))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment