Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: High Performance Game of Life

by marioroy (Prior)
on Aug 12, 2017 at 09:02 UTC ( [id://1197296]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub is_alive {
       my $self = shift;
    ...
       + $self->is_alive( $x + 1, $y + 1 );
    }
    
  2. or download this
    # Return the list of dead cells surrounding a cell
    sub get_dead_cells {
    ...
       + ( 0 + exists $cells->{ "$x2:$y2" } );
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1197296]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-20 01:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found