Jump over the HSPICE-specific key words

This commit is contained in:
Holger Vogt 2020-12-12 10:17:53 +01:00
parent 8c253524af
commit 043634b60e
1 changed files with 9 additions and 0 deletions

View File

@ -9230,6 +9230,15 @@ static void inp_poly_2g6_compat(struct card* deck) {
continue;
if (ciprefix("cur", curr_line))
continue;
/* the next four are HSPICE specific */
if (ciprefix("vccs", curr_line))
continue;
if (ciprefix("vcvs", curr_line))
continue;
if (ciprefix("ccvs", curr_line))
continue;
if (ciprefix("cccs", curr_line))
continue;
break;
default:
continue;