auxiliary define `job' --> local variable `job'
This commit is contained in:
parent
ef04192ec0
commit
dea9c539c2
18
ChangeLog
18
ChangeLog
|
|
@ -1,3 +1,21 @@
|
||||||
|
2011-12-13 Robert Larice
|
||||||
|
* src/spicelib/analysis/acaskq.c ,
|
||||||
|
* src/spicelib/analysis/acsetp.c ,
|
||||||
|
* src/spicelib/analysis/daskq.c ,
|
||||||
|
* src/spicelib/analysis/dsetparm.c ,
|
||||||
|
* src/spicelib/analysis/naskq.c ,
|
||||||
|
* src/spicelib/analysis/nsetparm.c ,
|
||||||
|
* src/spicelib/analysis/pssaskq.c ,
|
||||||
|
* src/spicelib/analysis/pssinit.c ,
|
||||||
|
* src/spicelib/analysis/psssetp.c ,
|
||||||
|
* src/spicelib/analysis/pzaskq.c ,
|
||||||
|
* src/spicelib/analysis/pzsetp.c ,
|
||||||
|
* src/spicelib/analysis/tfsetp.c ,
|
||||||
|
* src/spicelib/analysis/tranaskq.c ,
|
||||||
|
* src/spicelib/analysis/traninit.c ,
|
||||||
|
* src/spicelib/analysis/transetp.c :
|
||||||
|
auxiliary define `job' --> local variable `job'
|
||||||
|
|
||||||
2011-12-13 Robert Larice
|
2011-12-13 Robert Larice
|
||||||
* src/spicelib/analysis/acaskq.c ,
|
* src/spicelib/analysis/acaskq.c ,
|
||||||
* src/spicelib/analysis/acsetp.c ,
|
* src/spicelib/analysis/acsetp.c ,
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
ACaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
ACaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((ACAN *) anal)
|
ACAN *job = (ACAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
ACsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
ACsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((ACAN *) anal)
|
ACAN *job = (ACAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ Author: 1988 Jaijeet S Roychowdhury
|
||||||
int
|
int
|
||||||
DaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
DaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((DISTOAN *) anal)
|
DISTOAN *job = (DISTOAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Author: 1988 Jaijeet S Roychowdhury
|
||||||
int
|
int
|
||||||
DsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
DsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((DISTOAN *) anal)
|
DISTOAN *job = (DISTOAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ Author: 1987 Gary W. Ng
|
||||||
int
|
int
|
||||||
NaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
NaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((NOISEAN *) anal)
|
NOISEAN *job = (NOISEAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ Author: 1987 Gary W. Ng
|
||||||
int
|
int
|
||||||
NsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
NsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((NOISEAN *) anal)
|
NOISEAN *job = (NOISEAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ Author: 2010-05 Stefano Perticaroli ``spertica''
|
||||||
int
|
int
|
||||||
PSSaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
PSSaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((PSSan *) anal)
|
PSSan *job = (PSSan *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ Author: 2010-05 Stefano Perticaroli ``spertica''
|
||||||
|
|
||||||
int PSSinit(CKTcircuit *ckt, JOB *anal)
|
int PSSinit(CKTcircuit *ckt, JOB *anal)
|
||||||
{
|
{
|
||||||
#define job ((PSSan *) anal)
|
PSSan *job = (PSSan *) anal;
|
||||||
|
|
||||||
/* Final time depends on stabilization time requested for PSS
|
/* Final time depends on stabilization time requested for PSS
|
||||||
and on at least one more oscillation period */
|
and on at least one more oscillation period */
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ Author: 2010-05 Stefano Perticaroli ``spertica''
|
||||||
int
|
int
|
||||||
PSSsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
PSSsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((PSSan *) anal)
|
PSSan *job = (PSSan *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
PZaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
PZaskQuest(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((PZAN *) anal)
|
PZAN *job = (PZAN *) anal;
|
||||||
|
|
||||||
switch(which) {
|
switch(which) {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
PZsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
PZsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((PZAN *) anal)
|
PZAN *job = (PZAN *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
TFsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
TFsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((TFan *) anal)
|
TFan *job = (TFan *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
TRANaskQuest(CKTcircuit *ckt, JOB *anal, int which,IFvalue *value)
|
TRANaskQuest(CKTcircuit *ckt, JOB *anal, int which,IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((TRANan *) anal)
|
TRANan *job = (TRANan *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Modified: 2000 AlansFixes
|
||||||
|
|
||||||
int TRANinit(CKTcircuit *ckt, JOB *anal)
|
int TRANinit(CKTcircuit *ckt, JOB *anal)
|
||||||
{
|
{
|
||||||
#define job ((TRANan *) anal)
|
TRANan *job = (TRANan *) anal;
|
||||||
|
|
||||||
ckt->CKTfinalTime = job->TRANfinalTime;
|
ckt->CKTfinalTime = job->TRANfinalTime;
|
||||||
ckt->CKTstep = job->TRANstep;
|
ckt->CKTstep = job->TRANstep;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Author: 1985 Thomas L. Quarles
|
||||||
int
|
int
|
||||||
TRANsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
TRANsetParm(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value)
|
||||||
{
|
{
|
||||||
#define job ((TRANan *) anal)
|
TRANan *job = (TRANan *) anal;
|
||||||
|
|
||||||
NG_IGNORE(ckt);
|
NG_IGNORE(ckt);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue