Use the correct type of hash table for device and model names.
This fixes unpredictable failures of commands like "print @some_device".
This commit is contained in:
parent
673ae5c01d
commit
8ad759bd66
|
|
@ -89,8 +89,8 @@ CKTinit(CKTcircuit **ckt) /* new circuit to create */
|
|||
sckt->CKTabsDv = 0.5;
|
||||
sckt->CKTrelDv = 2.0;
|
||||
sckt->CKTvarHertz = 0;
|
||||
sckt->DEVnameHash = nghash_init_pointer(100);
|
||||
sckt->MODnameHash = nghash_init_pointer(100);
|
||||
sckt->DEVnameHash = nghash_init(100);
|
||||
sckt->MODnameHash = nghash_init(100);
|
||||
sckt->CKTepsmin = 1e-28;
|
||||
|
||||
#ifdef XSPICE
|
||||
|
|
|
|||
Loading…
Reference in New Issue