Advertisement
tari

tari

Oct 18th, 2009
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. /**
  2.  * Multithreaded implementation of Conway's game of life.
  3.  * >>Q: Why is it multithreaded?
  4.  * >>A: Because when someone gives me a crazy idea, it often leads to
  5.  *      implementation.
  6.  * My (unscientific) tests show this running 1.5-2 times faster than the
  7.  * provided example under heavy load.
  8.  *
  9.  * @author Peter Marheine <phmarhei@mtu.edu>
  10.  */
  11. public class Scene extends Animated implements ClickListener {
  12.     ...
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement