Reserve enough memory

This commit is contained in:
Holger Vogt 2024-12-09 14:56:28 +01:00
parent 3f26d455c3
commit c05a6398b7
3 changed files with 16 additions and 16 deletions

View File

@ -7,10 +7,10 @@
/* Debug statements */
extern bool ONEacDebug;
extern bool ONEdcDebug;
extern bool ONEtranDebug;
extern bool ONEjacDebug;
extern int ONEacDebug;
extern int ONEdcDebug;
extern int ONEtranDebug;
extern int ONEjacDebug;
/* Now some defines for the one dimensional simulator
* library.

View File

@ -7,10 +7,10 @@
/* Debug statements */
extern bool TWOacDebug;
extern bool TWOdcDebug;
extern bool TWOtranDebug;
extern bool TWOjacDebug;
extern int TWOacDebug;
extern int TWOdcDebug;
extern int TWOtranDebug;
extern int TWOjacDebug;
/* Now some defines for the two dimensional simulator
* library.

View File

@ -135,15 +135,15 @@ double MuLim, MutLim;
/* Global debug flags from CIDER, soon they will become
* spice variables :)
*/
bool ONEacDebug = FALSE;
bool ONEdcDebug = TRUE;
bool ONEtranDebug = TRUE;
bool ONEjacDebug = FALSE;
int ONEacDebug = FALSE;
int ONEdcDebug = TRUE;
int ONEtranDebug = TRUE;
int ONEjacDebug = FALSE;
bool TWOacDebug = FALSE;
bool TWOdcDebug = TRUE;
bool TWOtranDebug = TRUE;
bool TWOjacDebug = FALSE;
int TWOacDebug = FALSE;
int TWOdcDebug = TRUE;
int TWOtranDebug = TRUE;
int TWOjacDebug = FALSE;
/* CIDER Global Variable Declarations */