Re: Memory Allocation Problem [message #81136 is a reply to message #32923] |
Tue, 14 August 2012 16:51  |
Craig Markwardt
Messages: 1869 Registered: November 1996
|
Senior Member |
|
|
On Tuesday, August 14, 2012 9:34:11 AM UTC-4, adh...@gmail.com wrote:
> I will paste the other part of this section of the program below. I thought I might need to use the TEMPORARY command to free up some room but am not sure how to appropriately determine the point at which this should be placed. Any suggestions would be greatly appreciated as always!
When memory constrained, use TEMPORARY() after the last time you use a variable. Example: After you use the LATLON variable once, you never use it again.
Actually, I use David Fanning's UNDEFINE procedure because the semantics are better. The procedural statement,
UNDEFINE, LATLON
just makes sense.
Craig
|
|
|