From fb8e974ac419b9365dcbe78a4acad31d632bd4ad Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 20 Jan 2021 14:09:21 +0100 Subject: [PATCH] i-sweep sall become a current vector (SV_CURRENT) --- src/frontend/outitf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/outitf.c b/src/frontend/outitf.c index 57adc3904..adde34a8e 100644 --- a/src/frontend/outitf.c +++ b/src/frontend/outitf.c @@ -935,6 +935,8 @@ guess_type(const char *name) type = SV_TEMP; else if (cieq(name, "res-sweep")) type = SV_RES; + else if (cieq(name, "i-sweep")) + type = SV_CURRENT; else if ((*name == '@') && substring("[g", name)) /* token starting with [g */ type = SV_ADMITTANCE; else if ((*name == '@') && substring("[c", name))