Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
* This routine sets model parameters for NUMDs in the circuit.
*/
#include "ngspice/ngspice.h"
#include "ngspice/const.h"
#include "ngspice/ifsim.h"
#include "numddefs.h"
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMDmParam(int param, IFvalue *value, GENmodel *inModel)
{
NG_IGNORE(value);
NG_IGNORE(inModel);
switch (param) {
case NUMD_MOD_NUMD:
break;
default:
return (E_BADPARM);
}
return (OK);
}