Skip to content

Commit 8d057a1

Browse files
committed
Revert "fix nda dot namespace issue"
This reverts commit 76255e8.
1 parent 76255e8 commit 8d057a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

c++/triqs_soehyb/strong_cpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,6 @@ dcomplex trace_matmul(nda::array_const_view<dcomplex, 2> M1, nda::array_const_vi
737737
int n = M1.shape(0);
738738
auto M2_T = transpose(M2);
739739
dcomplex res = 0;
740-
for (int i = 0; i < n; ++i) { res += dot(M1(i, _), M2_T(i, _)); }
740+
for (int i = 0; i < n; ++i) { res += linalg::dot(M1(i, _), M2_T(i, _)); }
741741
return res;
742742
}

0 commit comments

Comments
 (0)