inp2m.c, do not restrict binning to four nodes

until now, for unknown reasons,
  the search for binned modelnames was restricted to
  instances with less than five nodes.
This commit is contained in:
rlar 2017-03-18 19:52:16 +01:00
parent 50c0424225
commit 80ef8b308d
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ INP2M(CKTcircuit *ckt, INPtables *tab, card *current)
txfree(INPgetMod(ckt, nname[i], &thismodel, tab));
/* check if using model binning -- pass in line since need 'l' and 'w' */
if (!thismodel && i < 5)
if (!thismodel)
txfree(INPgetModBin(ckt, nname[i], &thismodel, tab, line));
if (thismodel)