You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
875 B
37 lines
875 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
Model Author: 1995 Colin McAndrew Motorola
|
|
Spice3 Implementation: 2003 Dietmar Warning DAnalyse GmbH
|
|
**********/
|
|
|
|
/*
|
|
* This routine deletes all VBICs from the circuit and frees
|
|
* all storage they were using.
|
|
*/
|
|
|
|
#include "ngspice/ngspice.h"
|
|
#include "vbicdefs.h"
|
|
#include "ngspice/suffix.h"
|
|
|
|
|
|
void
|
|
VBICdestroy(GENmodel **inModel)
|
|
{
|
|
VBICmodel *mod = *(VBICmodel**) inModel;
|
|
|
|
while (mod) {
|
|
VBICmodel *next_mod = mod->VBICnextModel;
|
|
VBICinstance *inst = mod->VBICinstances;
|
|
while (inst) {
|
|
VBICinstance *next_inst = inst->VBICnextInstance;
|
|
FREE(inst->VBICsens);
|
|
FREE(inst);
|
|
inst = next_inst;
|
|
}
|
|
FREE(mod);
|
|
mod = next_mod;
|
|
}
|
|
|
|
*inModel = NULL;
|
|
}
|