cleanup OUTattributes() invocations
checked for object file invariance
This commit is contained in:
parent
29c57dd857
commit
96e1d7eec6
|
|
@ -196,8 +196,7 @@ ACan(CKTcircuit *ckt, int restart)
|
|||
if(error) return(error);
|
||||
|
||||
if (job->ACstepType != LINEAR) {
|
||||
SPfrontEnd->OUTattributes (acPlot, NULL,
|
||||
OUT_SCALE_LOG, NULL);
|
||||
SPfrontEnd->OUTattributes (acPlot, NULL, OUT_SCALE_LOG, NULL);
|
||||
}
|
||||
freq = job->ACstartFreq;
|
||||
|
||||
|
|
|
|||
|
|
@ -209,8 +209,7 @@ int sens_sens(CKTcircuit *ckt, int restart)
|
|||
output_values = NULL;
|
||||
output_cvalues = NEWN(IFcomplex, num_vars);
|
||||
if (job->step_type != SENS_LINEAR)
|
||||
SPfrontEnd->OUTattributes (sen_data,
|
||||
NULL, OUT_SCALE_LOG, NULL);
|
||||
SPfrontEnd->OUTattributes (sen_data, NULL, OUT_SCALE_LOG, NULL);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -523,8 +523,7 @@ time1 = SPfrontEnd->IFseconds();
|
|||
numNames, nameList, IF_COMPLEX,
|
||||
&acPlot);
|
||||
if (job->DstepType != LINEAR) {
|
||||
SPfrontEnd->OUTattributes (acPlot, NULL,
|
||||
OUT_SCALE_LOG, NULL);
|
||||
SPfrontEnd->OUTattributes (acPlot, NULL, OUT_SCALE_LOG, NULL);
|
||||
}
|
||||
for (i=0; i< displacement ; i++)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -137,8 +137,7 @@ NOISEan (CKTcircuit *ckt, int restart)
|
|||
if (error) return(error);
|
||||
|
||||
if (job->NstpType != LINEAR) {
|
||||
SPfrontEnd->OUTattributes (data->NplotPtr, NULL,
|
||||
OUT_SCALE_LOG, NULL);
|
||||
SPfrontEnd->OUTattributes (data->NplotPtr, NULL, OUT_SCALE_LOG, NULL);
|
||||
}
|
||||
|
||||
} else { /* we must have paused before. pick up where we left off */
|
||||
|
|
|
|||
Loading…
Reference in New Issue