From 39443fafddd3bb0790606ef1f97241eff11b47c3 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 18 Oct 2023 14:36:08 +0200 Subject: [PATCH] Removing unused models takes much more time than keeping them for large circuits. Probably a hash table may help here (t.b.d.). --- src/frontend/inp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/inp.c b/src/frontend/inp.c index b164bc1fe..aba8450d1 100644 --- a/src/frontend/inp.c +++ b/src/frontend/inp.c @@ -960,8 +960,8 @@ inp_spsource(FILE *fp, bool comfile, char *filename, bool intfile) So again try to remove unused MOS models. All binning models are still here when w or l have been determined by an expression. */ - if (newcompat.hs || newcompat.spe) - rem_unused_mos_models(deck->nextcard); +// if (newcompat.hs || newcompat.spe) +// rem_unused_mos_models(deck->nextcard); /* now load deck into ft_curckt -- the current circuit. */ if(inp_dodeck(deck, tt, wl_first, FALSE, options, filename) != 0)