correct option settings for lteabstol, ltereltol, ltetrtol
This commit is contained in:
parent
5951c695c9
commit
eb65673f92
|
|
@ -187,6 +187,17 @@ CKTsetOpt(CKTcircuit *ckt, JOB *anal, int opt, IFvalue *val)
|
||||||
task->TSKkluMemGrowFactor = (val->rValue == 1.2);
|
task->TSKkluMemGrowFactor = (val->rValue == 1.2);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef NEWTRUNC
|
||||||
|
case OPT_LTERELTOL:
|
||||||
|
task->TSKlteReltol = val->rValue;
|
||||||
|
break;
|
||||||
|
case OPT_LTEABSTOL:
|
||||||
|
task->TSKlteAbstol = val->rValue;
|
||||||
|
break;
|
||||||
|
case OPT_LTETRTOL:
|
||||||
|
task->TSKlteTrtol = val->rValue;
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* gtri - begin - wbk - add new options */
|
/* gtri - begin - wbk - add new options */
|
||||||
#ifdef XSPICE
|
#ifdef XSPICE
|
||||||
|
|
@ -357,9 +368,9 @@ static IFparm OPTtbl[] = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NEWTRUNC
|
#ifdef NEWTRUNC
|
||||||
{ "ltereltol", OPT_RELTOL,IF_SET | IF_REAL ,"Relative error tolerence" },
|
{ "ltereltol", OPT_LTERELTOL,IF_SET | IF_REAL ,"Relative error tolerence" },
|
||||||
{ "lteabstol", OPT_ABSTOL,IF_SET | IF_REAL,"Absolute error tolerence" },
|
{ "lteabstol", OPT_LTEABSTOL,IF_SET | IF_REAL,"Absolute error tolerence" },
|
||||||
{ "ltetrtol", OPT_TRTOL,IF_SET | IF_REAL,"Truncation error overestimation factor" }
|
{ "ltetrtol", OPT_LTETRTOL,IF_SET | IF_REAL,"Truncation error overestimation factor" }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue