diff options
Diffstat (limited to 'impl/performance/generate-long.py')
-rw-r--r-- | impl/performance/generate-long.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/impl/performance/generate-long.py b/impl/performance/generate-long.py index b6de5b2..e467830 100644 --- a/impl/performance/generate-long.py +++ b/impl/performance/generate-long.py @@ -1,5 +1,5 @@ import sys print 'x0 = 0' -for i in xrange(int(sys.argv[1])): +for i in xrange(int(sys.argv[1])-1): print 'x' + str(i+1) + " = x" + str(i) |