From e28cae42f14211808fb1389772474edd76d6104b Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Thu, 2 Apr 2020 20:51:43 +0200 Subject: [PATCH] enable both new gmin and dyngmin --- src/spicelib/analysis/cktop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spicelib/analysis/cktop.c b/src/spicelib/analysis/cktop.c index c3c27791c..3c199b657 100644 --- a/src/spicelib/analysis/cktop.c +++ b/src/spicelib/analysis/cktop.c @@ -61,9 +61,9 @@ CKTop (CKTcircuit *ckt, long int firstmode, long int continuemode, /* first the new gmin, then the old gmin */ else { converged = new_gmin(ckt, firstmode, continuemode, iterlim); -/* if(converged != 0) { + if(converged != 0) { converged = dynamic_gmin(ckt, firstmode, continuemode, iterlim); - }*/ + } } }