Reserve enough memory
This commit is contained in:
parent
3f26d455c3
commit
c05a6398b7
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
16
src/main.c
16
src/main.c
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue