From 0d639ab6dcca55786089949abdb59d3f4b4f99b8 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Sun, 19 May 2024 14:11:06 +0200 Subject: [PATCH] Third round of formatting --- src/partitioner/recursive_bisection.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/partitioner/recursive_bisection.cpp b/src/partitioner/recursive_bisection.cpp index 36c5a0b53..63b3a39fd 100644 --- a/src/partitioner/recursive_bisection.cpp +++ b/src/partitioner/recursive_bisection.cpp @@ -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;