> From: "Weber, Dr Charles" <Weberc{([at]})nowhere.xy
> To: "'blackbox{([at]})nowhere.xy> Subject: memory limit?
> Date: Tue, 26 Jun 2001 15:57:03 -0400
> I recently downloaded Blackbox and wrote a short program to see if I could
> work with large matrices. I was able to multiply up to a 507X507 matrix by
> a 507 vector to produce a 507 vector, but anything larger lead to a "stack
> overflow" or else Blackbox just exited. There were no problems with
> compilation. Are there any "memory model" limitations? 2 MB is awfully
> limiting.
>
could you please post the parameter lists ?
If you have a
PROCEDURE Mult ( A, B : Matrix; VAR res : Matrix )
it would be no wonder, since A and B would becopied to
the stack. Try
PROCEDURE Mult ( IN A, B : Matrix; VAR res : Matrix )
or
PROCEDURE Mult ( IN A, B : Matrix; OUT res : Matrix )
hV
Received on Wed Jun 27 2001 - 06:29:32 UTC