Skip to content

Commit a89c7ae

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 97fbd00 commit a89c7ae

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)