Commit 3c9da854 authored by Michal Petr's avatar Michal Petr
Browse files

fix: Dynamic test not printing object count to CSV

parent 44d8c96c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ namespace dynamic_collision {
            file << "\n";
            for (const auto& time_vec : m_benchmark_times) {
                for (const auto& [obj_count, seed, init, iters, total, broad, narrow] : time_vec) {
                    file << seed << "," << init << "," << total << "," << broad << "," << narrow;
                    file << obj_count << "," << seed << "," << init << "," << total << "," << broad << "," << narrow;
                    for (const auto& iter : iters) {
                        file << "," << iter;
                    }