Third round of formatting

This commit is contained in:
Dennis Luxen 2024-05-19 14:11:06 +02:00
parent d1632f5021
commit 0d639ab6dc

View File

@ -61,8 +61,9 @@ RecursiveBisection::RecursiveBisection(BisectionGraph &bisection_graph_,
std::transform(first,
last,
std::back_inserter(forest),
[this](auto graph)
{ return TreeNode{std::move(graph), internal_state.SCCDepth()}; });
[this](auto graph) {
return TreeNode{std::move(graph), internal_state.SCCDepth()};
});
using Feeder = tbb::feeder<TreeNode>;