35 lines
551 B
C
35 lines
551 B
C
#include <stdio.h>
|
|
|
|
#include "ngspice/config.h"
|
|
#include "ngspice/memory.h"
|
|
#include "ngspice/dvec.h"
|
|
#include "ngspice/complex.h"
|
|
|
|
#include "cmath.h"
|
|
#include "cmath1.h"
|
|
|
|
FILE *cp_err;
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
ngcomplex_t *c = NULL;
|
|
double *d = NULL;
|
|
short int t1;
|
|
short int t2;
|
|
int n1;
|
|
int n2;
|
|
|
|
cp_err = stderr;
|
|
n1 = 1;
|
|
t1 = VF_COMPLEX;
|
|
c = alloc_c(n1);
|
|
realpart(&c[0]) = .0;
|
|
imagpart(&c[0]) = 1.0;
|
|
d = (double *) cx_mag((void *) c, t1, n1, &n2, &t2);
|
|
if (d[0] == 1)
|
|
return 0;
|
|
else
|
|
return 1;
|
|
}
|