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(error) return(error);
|
||||||
|
|
||||||
if (job->ACstepType != LINEAR) {
|
if (job->ACstepType != LINEAR) {
|
||||||
SPfrontEnd->OUTattributes (acPlot, NULL,
|
SPfrontEnd->OUTattributes (acPlot, NULL, OUT_SCALE_LOG, NULL);
|
||||||
OUT_SCALE_LOG, NULL);
|
|
||||||
}
|
}
|
||||||
freq = job->ACstartFreq;
|
freq = job->ACstartFreq;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -209,8 +209,7 @@ int sens_sens(CKTcircuit *ckt, int restart)
|
||||||
output_values = NULL;
|
output_values = NULL;
|
||||||
output_cvalues = NEWN(IFcomplex, num_vars);
|
output_cvalues = NEWN(IFcomplex, num_vars);
|
||||||
if (job->step_type != SENS_LINEAR)
|
if (job->step_type != SENS_LINEAR)
|
||||||
SPfrontEnd->OUTattributes (sen_data,
|
SPfrontEnd->OUTattributes (sen_data, NULL, OUT_SCALE_LOG, NULL);
|
||||||
NULL, OUT_SCALE_LOG, NULL);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -523,8 +523,7 @@ time1 = SPfrontEnd->IFseconds();
|
||||||
numNames, nameList, IF_COMPLEX,
|
numNames, nameList, IF_COMPLEX,
|
||||||
&acPlot);
|
&acPlot);
|
||||||
if (job->DstepType != LINEAR) {
|
if (job->DstepType != LINEAR) {
|
||||||
SPfrontEnd->OUTattributes (acPlot, NULL,
|
SPfrontEnd->OUTattributes (acPlot, NULL, OUT_SCALE_LOG, NULL);
|
||||||
OUT_SCALE_LOG, NULL);
|
|
||||||
}
|
}
|
||||||
for (i=0; i< displacement ; i++)
|
for (i=0; i< displacement ; i++)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -137,8 +137,7 @@ NOISEan (CKTcircuit *ckt, int restart)
|
||||||
if (error) return(error);
|
if (error) return(error);
|
||||||
|
|
||||||
if (job->NstpType != LINEAR) {
|
if (job->NstpType != LINEAR) {
|
||||||
SPfrontEnd->OUTattributes (data->NplotPtr, NULL,
|
SPfrontEnd->OUTattributes (data->NplotPtr, NULL, OUT_SCALE_LOG, NULL);
|
||||||
OUT_SCALE_LOG, NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else { /* we must have paused before. pick up where we left off */
|
} else { /* we must have paused before. pick up where we left off */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue