Skip to content

Commit

Permalink
[MISC] IWYU
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Oct 30, 2023
1 parent e7d17ab commit 8f1765d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
20 changes: 11 additions & 9 deletions src/hierarchical_interleaved_bloom_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
// SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: BSD-3-Clause

#include <algorithm> // for max, fill_n, shuffle
#include <cinttypes> // for uint64_t, int64_t
#include <cstddef> // for size_t
#include <mutex> // for mutex, lock_guard
#include <numeric> // for iota
#include <optional> // for optional
#include <random> // for random_device, mt19937_64
#include <utility> // for move
#include <vector> // for vector, erase
#include <algorithm> // for max, fill_n, shuffle, __max_fn
#include <cassert> // for assert
#include <cinttypes> // for int64_t, uint64_t
#include <cstddef> // for size_t
#include <functional> // for identity, less
#include <mutex> // for mutex, lock_guard
#include <numeric> // for iota
#include <optional> // for optional
#include <random> // for random_device, mt19937_64
#include <utility> // for move
#include <vector> // for vector, erase

#include <hibf/build/build_data.hpp> // for build_data
#include <hibf/build/compute_kmers.hpp> // for compute_kmers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
// SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: BSD-3-Clause

#include <gtest/gtest.h> // for Test, Message, TestInfo, TestPartResult, EXPECT_EQ
#include <gtest/gtest.h> // for Test, Message, TestPartResult, TestInfo, EXPECT_EQ

#include <cinttypes> // for uint32_t
#include <cstddef> // for size_t
#include <functional> // for function
#include <ranges> // for _Iota, iota, views
Expand All @@ -12,6 +13,7 @@

#include <hibf/config.hpp> // for insert_iterator, config
#include <hibf/hierarchical_interleaved_bloom_filter.hpp> // for hierarchical_interleaved_bloom_filter
#include <hibf/interleaved_bloom_filter.hpp> // for counting_vector
#include <hibf/layout/layout.hpp> // for layout
#include <hibf/test/expect_range_eq.hpp> // for expect_range_eq, EXPECT_RANGE_EQ

Expand Down

0 comments on commit 8f1765d

Please sign in to comment.