Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] IWYU #218

Merged
merged 1 commit into from
Aug 19, 2024
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
5 changes: 2 additions & 3 deletions include/hibf/sketch/compute_sketches.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@

#pragma once

#include <cstddef> // for size_t
#include <vector> // for vector
#include <vector> // for vector

#include <hibf/config.hpp> // for config
#include <hibf/sketch/hyperloglog.hpp> // for hyperloglog
#include <hibf/sketch/minhashes.hpp> // for minhash
#include <hibf/sketch/minhashes.hpp> // for minhashes

namespace seqan::hibf::sketch
{
Expand Down
17 changes: 8 additions & 9 deletions src/sketch/compute_sketches.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@
#include <limits> // for numeric_limits
#include <span> // for span
#include <stdexcept> // for runtime_error
#include <string> // for char_traits, operator+, to_string
#include <string> // for allocator, char_traits, operator+, to_string
#include <utility> // for move
#include <vector> // for vector, allocator

#include <hibf/config.hpp> // for config, insert_iterator
#include <hibf/contrib/robin_hood.hpp> // for hash, unordered_flat_set
#include <hibf/sketch/compute_sketches.hpp> // for compute_sketches
#include <hibf/sketch/estimate_kmer_counts.hpp> // for estimate_kmer_counts
#include <hibf/sketch/hyperloglog.hpp> // for hyperloglog
#include <hibf/sketch/minhashes.hpp> // for minhashes
#include <vector> // for vector

#include <hibf/config.hpp> // for config, insert_iterator
#include <hibf/contrib/robin_hood.hpp> // for hash, unordered_flat_set
#include <hibf/sketch/compute_sketches.hpp> // for compute_sketches
#include <hibf/sketch/hyperloglog.hpp> // for hyperloglog
#include <hibf/sketch/minhashes.hpp> // for minhashes

namespace seqan::hibf::sketch
{
Expand Down
Loading