Browse Source

Reserve enough memory

pre-master-46
Holger Vogt 1 year ago
parent
commit
c05a6398b7
  1. 8
      src/ciderlib/oned/oneddefs.h
  2. 8
      src/ciderlib/twod/twoddefs.h
  3. 18
      src/main.c

8
src/ciderlib/oned/oneddefs.h

@ -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.

8
src/ciderlib/twod/twoddefs.h

@ -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.

18
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;
bool TWOacDebug = FALSE;
bool TWOdcDebug = TRUE;
bool TWOtranDebug = TRUE;
bool TWOjacDebug = FALSE;
int ONEacDebug = FALSE;
int ONEdcDebug = TRUE;
int ONEtranDebug = TRUE;
int ONEjacDebug = FALSE;
int TWOacDebug = FALSE;
int TWOdcDebug = TRUE;
int TWOtranDebug = TRUE;
int TWOjacDebug = FALSE;
/* CIDER Global Variable Declarations */

Loading…
Cancel
Save