3#ifndef pRC_CORE_COMPLEX_FUNCTIONS_CONJ_H
4#define pRC_CORE_COMPLEX_FUNCTIONS_CONJ_H
11 static inline constexpr auto conj(
T const &a)
13 return Complex(a.real(), -a.imag());
Definition cholesky.hpp:10
Complex(T const &) -> Complex< T >
static constexpr auto conj(T const &a)
Definition conj.hpp:11