10#ifndef TLAPACK_LADIV_HH
11#define TLAPACK_LADIV_HH
55 return a *
t + (
b *
t) *
r;
58 return (a +
d * (
b / c)) *
t;
77 const real_t ov = std::numeric_limits<real_t>::max();
130 if (abs(
d) <= abs(c)) {
155template <TLAPACK_COMPLEX T, enable_if_t<is_complex<T>,
int> = 0>
constexpr real_type< T > real(const T &x) noexcept
Extends std::real() to real datatypes.
Definition utils.hpp:71
constexpr real_type< T > imag(const T &x) noexcept
Extends std::imag() to real datatypes.
Definition utils.hpp:86
#define TLAPACK_REAL
Macro for tlapack::concepts::Real compatible with C++17.
Definition concepts.hpp:918
void ladiv(const real_t &a, const real_t &b, const real_t &c, const real_t &d, real_t &p, real_t &q)
Performs complex division in real arithmetic.
Definition ladiv.hpp:39
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113