Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might as well rename the file to partition_point.bench.cpp?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually want to revisit this file entirely, since it does not benchmark the std::partition_point algorithm :/

Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

#include "benchmark/benchmark.h"

#include "CartesianBenchmarks.h"
#include "GenerateInput.h"
#include "../CartesianBenchmarks.h"
#include "../GenerateInput.h"

namespace {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <utility>

#include "benchmark/benchmark.h"
#include "Utilities.h"
#include "../Utilities.h"
#include "test_iterators.h"

namespace ContainerBenchmarks {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "benchmark/benchmark.h"

#include "ContainerBenchmarks.h"
#include "GenerateInput.h"
#include "../GenerateInput.h"

using namespace ContainerBenchmarks;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <random>
#include <vector>

#include "CartesianBenchmarks.h"
#include "../CartesianBenchmarks.h"
#include "benchmark/benchmark.h"
#include "test_macros.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <string>
#include <vector>

#include "CartesianBenchmarks.h"
#include "../CartesianBenchmarks.h"
#include "benchmark/benchmark.h"
#include "test_macros.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include <new>
#include <vector>

#include "CartesianBenchmarks.h"
#include "GenerateInput.h"
#include "../CartesianBenchmarks.h"
#include "../GenerateInput.h"
#include "benchmark/benchmark.h"
#include "test_macros.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "benchmark/benchmark.h"

#include "ContainerBenchmarks.h"
#include "GenerateInput.h"
#include "../GenerateInput.h"
#include "test_macros.h"

using namespace ContainerBenchmarks;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include "benchmark/benchmark.h"
#include "ContainerBenchmarks.h"
#include "GenerateInput.h"
#include "../GenerateInput.h"

using namespace ContainerBenchmarks;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <random>
#include <string>

#include "CartesianBenchmarks.h"
#include "../CartesianBenchmarks.h"
#include "benchmark/benchmark.h"

// *** Localization ***
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <format>
#include <random>

#include "CartesianBenchmarks.h"
#include "../CartesianBenchmarks.h"
#include "benchmark/benchmark.h"
#include "test_macros.h"

Expand Down
Loading