Skip to content

Commit

Permalink
Fix benchmark includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Dec 1, 2021
1 parent 5b19494 commit b5a159f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions benchmarks/errorbar-plot/bench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
#include <utility>
#include <vector>
#include <cpp-sort/sorters.h>
#include "distributions.h"
#include "filesystem.h"
#include "statistics.h"
#include "../benchmarking-tools/distributions.h"
#include "../benchmarking-tools/filesystem.h"
#include "../benchmarking-tools/statistics.h"

using namespace std::chrono_literals;

Expand Down
10 changes: 5 additions & 5 deletions benchmarks/inversions/inv-bench.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020 Morwenn
* Copyright (c) 2020-2021 Morwenn
* SPDX-License-Identifier: MIT
*/
#include <cassert>
Expand All @@ -14,10 +14,10 @@
#include <utility>
#include <vector>
#include <cpp-sort/sorters.h>
#include "distributions.h"
#include "filesystem.h"
#include "rdtsc.h"
#include "statistics.h"
#include "../benchmarking-tools/distributions.h"
#include "../benchmarking-tools/filesystem.h"
#include "../benchmarking-tools/rdtsc.h"
#include "../benchmarking-tools/statistics.h"

using namespace std::chrono_literals;

Expand Down
4 changes: 2 additions & 2 deletions benchmarks/patterns/bench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
#include <utility>
#include <vector>
#include <cpp-sort/sorters.h>
#include "distributions.h"
#include "rdtsc.h"
#include "../benchmarking-tools/distributions.h"
#include "../benchmarking-tools/rdtsc.h"

// Type of data to sort during the benchmark
using value_t = double;
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/small-array/benchmark.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2015-2020 Morwenn
* Copyright (c) 2015-2021 Morwenn
* SPDX-License-Identifier: MIT
*/
#include <algorithm>
Expand All @@ -16,8 +16,8 @@
#include <cpp-sort/adapters.h>
#include <cpp-sort/fixed_sorters.h>
#include <cpp-sort/sorters.h>
#include "distributions.h"
#include "rdtsc.h"
#include "../benchmarking-tools/distributions.h"
#include "../benchmarking-tools/rdtsc.h"

using namespace std::chrono_literals;

Expand Down

0 comments on commit b5a159f

Please sign in to comment.