> 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 )
Bernhard Treutwein
Bernhard.Treutwein{([at]})nowhere.xy
Tel. 049-89-2180-2774 Fax.: 089-2180-9927742
--------------------------------------------
To unsubscribe from this mailing list, send a message containing the word "unsubscribe" to:
blackbox-request{([at]})nowhere.xy
To get a list of valid e-mail commands and instructions on their usage, send a message containing the word "help" to the above address.
Send any problem reports or questions related to this email list to the list owner at
owner-blackbox{([at]})nowhere.xy
Received on Wed Jun 27 2001 - 06:29:26 UTC