35 #ifndef TEMPLATE_LAPACK_LADIV_HEADER
36 #define TEMPLATE_LAPACK_LADIV_HEADER
41 const Treal *d__, Treal *p, Treal *q)
82 *p = (*a + *b * e) / f;
83 *q = (*b - *a * e) / f;
87 *p = (*b + *a * e) / f;
88 *q = (-(*a) + *b * e) / f;
#define absMACRO(x)
Definition: template_blas_common.h:45
int template_lapack_ladiv(const Treal *a, const Treal *b, const Treal *c__, const Treal *d__, Treal *p, Treal *q)
Definition: template_lapack_ladiv.h:40