view ch6ex1.py @ 48:98eb01502cf5 tip

Follow up to last commit. Re-orient the r-pentomino. Added progress display.
author Brian Neal <bgneal@gmail.com>
date Wed, 31 Jul 2013 20:37:12 -0500
parents 49db586c727a
children
line wrap: on
line source
"""Chapter 6, exercise 1 in Allen Downey's Think Complexity book.

"Download thinkcomplex.com/CA.py and thinkcomplex.com/CADrawer.py and confirm
that they run on your system; you might have to install additional Python
packages."

"""
import sys

import CA
from CADrawer import PyplotDrawer

def main(script, rule, n):
    rule = int(rule)
    n = int(n)
    ca = CA.CA(rule, n)
    ca.start_single()
    ca.loop(n - 1)

    drawer = PyplotDrawer()
    drawer.draw(ca)
    drawer.show()


if __name__ == '__main__':
    main(*sys.argv)