Re: Python and cellular automata (It works this time!)

2006-06-24 Thread defcon8
blog-of-justin.blogspot.com Sorry for the error. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python and cellular automata (It works this time!)

2006-06-24 Thread Terry Reedy
"defcon8" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I thought people would be interested in this little script I wrote to > reproduce the 256 simple automata that is shown in the first chapters > of "A New Kind of Science". You can see a few results without running > the script

Re: Python and cellular automata (It works this time!)

2006-06-24 Thread bearophileHUGS
Few coding suggestions: - Don't mix spaces and tabs; - Don't write line (comments) too much long; - Don't post too much code here; - For this program maybe Pygame is more fit (to show the images in real time) instead of PIL; - Maybe Psyco can help speed up this program; - Maybe ShedSkin will suppor

Re: Python and cellular automata (It works this time!)

2006-06-24 Thread defcon8
Sorry about the code. It seems to have been truncated. I have it hosted at http://xahlee.org/x/realautomata.py Thanks to Xah Lee. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python and cellular automata (It works this time!)

2006-06-24 Thread placid
defcon8 wrote: > I thought people would be interested in this little script I wrote to > reproduce the 256 simple automata that is shown in the first chapters > of "A New Kind of Science". You can see a few results without running > the script, at http://cooper-j.blogspot.com . And here is the cod

Python and cellular automata (It works this time!)

2006-06-24 Thread defcon8
I thought people would be interested in this little script I wrote to reproduce the 256 simple automata that is shown in the first chapters of "A New Kind of Science". You can see a few results without running the script, at http://cooper-j.blogspot.com . And here is the code (You will need PIL (Py