Initialze sim_param_vals

This commit is contained in:
Holger Vogt 2022-10-31 12:48:57 +01:00 committed by Pascal Kuthe
parent 63e8c2e7c6
commit 3cf02dd786
No known key found for this signature in database
GPG Key ID: D715E8655AE166A6
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ char *sim_params[NUM_SIM_PARAMS + 1] = {
"gdev", "gmin", "tnom", "simulatorVersion", "sourceScaleFactor", NULL};
char *sim_params_str[1] = {NULL};
double sim_param_vals[NUM_SIM_PARAMS] = {};
double sim_param_vals[NUM_SIM_PARAMS] = {0,0,0,0,0};
/* values returned by $simparam*/
OsdiSimParas get_simparams(const CKTcircuit *ckt) {