12#ifndef TLAPACK_LASY2_HH
13#define TLAPACK_LASY2_HH
39 enable_if_t<is_real<type_t<matrixX_t>> && is_real<type_t<matrixT_t>> &&
40 is_real<type_t<matrixB_t>>,
58 const idx_t
n1 = ncols(
TL);
59 const idx_t
n2 = ncols(
TR);
72 if (
n1 == 0
or n2 == 0)
return 0;
86 const T
gam = abs(
B(0, 0));
95 "lasy2: not implemented for n1=2 and n2=1 or n1=1 and "
107 T
smin = max(max(abs(
TR(0, 0)), abs(
TR(0, 1))),
108 max(abs(
TR(1, 0)), abs(
TR(1, 1))));
110 max(abs(
TL(1, 0)), abs(
TL(1, 1)))));
113 for (idx_t i = 0; i < 4; ++i)
114 for (idx_t j = 0; j < 4; ++j)
123 T16(0, 1) =
TL(1, 0);
124 T16(1, 0) =
TL(0, 1);
125 T16(2, 3) =
TL(1, 0);
126 T16(3, 2) =
TL(0, 1);
129 T16(0, 1) =
TL(0, 1);
130 T16(1, 0) =
TL(1, 0);
131 T16(2, 3) =
TL(0, 1);
132 T16(3, 2) =
TL(1, 0);
153 for (idx_t i = 0; i < 3; ++i) {
158 for (idx_t
ip = i;
ip < 4; ++
ip) {
159 for (idx_t
jp = i;
jp < 4; ++
jp) {
185 for (idx_t j = i + 1; j < 4; ++j) {
188 for (idx_t
k = i + 1;
k < 4; ++
k) {
210 for (idx_t i = 0; i < 4; ++i) {
214 for (idx_t j =
k + 1; j < 4; ++j) {
218 for (idx_t i = 0; i < 3; ++i) {
219 if (
jpiv[2 - i] != 2 - i) {
Op
Definition types.hpp:227
constexpr int sgn(const T &val)
Type-safe sgn function.
Definition utils.hpp:109
#define TLAPACK_MATRIX
Macro for tlapack::concepts::Matrix compatible with C++17.
Definition concepts.hpp:896
int lasy2(Op trans_l, Op trans_r, int isign, const matrixT_t &TL, const matrixT_t &TR, const matrixB_t &B, type_t< matrixX_t > &scale, matrixX_t &X, type_t< matrixX_t > &xnorm)
lasy2 solves the Sylvester matrix equation where the matrices are of order 1 or 2.
Definition lasy2.hpp:42
void swap(vectorX_t &x, vectorY_t &y)
Swap vectors, .
Definition swap.hpp:31
#define tlapack_check(cond)
Throw an error if cond is false.
Definition exceptionHandling.hpp:98
#define tlapack_error(info, detailedInfo)
Error handler.
Definition exceptionHandling.hpp:142
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