Skip to content

Commit 15db8b5

Browse files
author
Martin D. Weinberg
committed
Fix code typo in version-toggled Eigen workaround for spherical coefficient packing
1 parent 8b7c6b7 commit 15db8b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

expui/Coefficients.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ namespace CoefClasses
131131
in2.transposeInPlace();
132132

133133
for (size_t c=0, n=0; c<in.cols(); c++) {
134-
for (size_t r=0, n=0; r<in.rows(); r++) {
134+
for (size_t r=0; r<in.rows(); r++) {
135135
in(r, c) = in2.data()[n++];
136136
}
137137
}

0 commit comments

Comments
 (0)