Skip to content

Commit 51acd3a

Browse files
author
dyzheng
committed
Merge branch 'fix_davsubspace' of github.com:dyzheng/abacus-develop into fix_davsubspace
2 parents 7b8d46f + d4f570d commit 51acd3a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/module_lr/hsolver_lrtd.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ namespace LR
1414
inline void print_eigs(const std::vector<T>& eigs, const std::string& label = "", const double factor = 1.0)
1515
{
1616
std::cout << label << std::endl;
17-
for (auto& e : eigs)std::cout << e * factor << " ";
17+
for (auto& e : eigs) {std::cout << e * factor << " ";
18+
}
1819
std::cout << std::endl;
1920
}
2021
template<typename T, typename Device>

0 commit comments

Comments
 (0)