in reply to Re^5: Handling HUGE amounts of data
in thread Handling HUGE amounts of data
Actually I am using strict - the my declaration for $x, $y, and $z was elsewhere. And this was my original before I got creative:
sub popnum1 { ( $x, $y, $z ) = @_; if ( $y == 0 ) { $aob[$x][0] = $initial + $z; } else { if ( substr( $aod[ $y - 1 ], $x, 1 ) ne 'a' ) { $aob[$x][$y] = $initial + $z; } else { $aob[$x][$y] = $z + $aob[$x][ $y - 1 ]; } } return $aob[$x][$y]; }
I've moved the Perl/Tk done snippet into a different script and running the full load still throws an 'out of memory' during what should be cleanup. Now I have to track down exactly where.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Handling HUGE amounts of data
by BrowserUk (Patriarch) on Jan 31, 2011 at 20:52 UTC | |
by Dandello (Monk) on Jan 31, 2011 at 23:48 UTC | |
by BrowserUk (Patriarch) on Feb 01, 2011 at 00:05 UTC |