From c26f38114fedde81effb938ffbedfe922d77a322 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Tue, 7 Aug 2012 17:01:57 +1000 Subject: A whole bunch of clean up work around the place. - Make it a bit nicer to use the command-line - Remove the strategies we won't be using - Clean up some code around the place, generally --- impl/systems/generate-long.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'impl/systems/generate-long.py') diff --git a/impl/systems/generate-long.py b/impl/systems/generate-long.py index 210ba1e..d2462b0 100644 --- a/impl/systems/generate-long.py +++ b/impl/systems/generate-long.py @@ -1,4 +1,4 @@ -print 'x0 = 0' -for i in xrange(100000): +for i in reversed(xrange(10000)): print 'x' + str(i+1) + " = x" + str(i) +print 'x0 = 0' -- cgit v1.2.3