Skip to content
Snippets Groups Projects
Commit 024e3e46 authored by patavirt's avatar patavirt
Browse files

Same code for complex/AD pinning

parent ad874940
No related branches found
No related tags found
No related merge requests found
...@@ -260,18 +260,14 @@ inline Scalar S(const array::ArrayView<const Mask, Shape0>& mask, ...@@ -260,18 +260,14 @@ inline Scalar S(const array::ArrayView<const Mask, Shape0>& mask,
if (mask(i,j) == Mask::VACUUM) { if (mask(i,j) == Mask::VACUUM) {
continue; continue;
} else if (mask(i,j) == Mask::TERMINAL) { } else if (mask(i,j) == Mask::TERMINAL) {
if constexpr (std::is_same_v<Scalar, Complex>) { auto Qv = get_Q_matrix(Q.part(i,j));
Qmat.part(i,j).matrix() = get_Q_matrix(Q.part(i,j)); for (size_t p = 0; p < 4; ++p) {
} else { for (size_t q = 0; q < 4; ++q) {
auto Qv = get_Q_matrix(Q.part(i,j)); auto w = flat_value(Qv(p,q));
for (size_t p = 0; p < 4; ++p) { Qmat(i,j,p,q) = w;
for (size_t q = 0; q < 4; ++q) {
auto w = flat_value(Qv(p,q)); /* Pin value to the flat value */
Qmat(i,j,p,q) = w; S = S + (Qv(p,q) - w) * (Qv(p,q) - w);
/* Pin value to the flat value */
S = S + (Qv(p,q) - w) * (Qv(p,q) - w);
}
} }
} }
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment