Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions authored and eseiler committed Nov 17, 2023
1 parent 75a8da5 commit 6d1fe08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/layout/execute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ namespace chopper::layout
{

void partition_user_bins(chopper::configuration const & config,
std::vector<size_t> const & cardinalities,
std::vector<std::vector<size_t>> & positions)
std::vector<size_t> const & cardinalities,
std::vector<std::vector<size_t>> & positions)
{
// all approaches need sorted positions
std::vector<size_t> const sorted_positions = [&cardinalities]()
Expand Down
12 changes: 5 additions & 7 deletions src/set_up_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,11 @@ void set_up_parser(sharg::parser & parser, configuration & config)
"your goal is to reduce the index size and thereby peak mempry usage of searching with the HIBF.",
.advanced = true});

parser.add_option(
config.partitioning_approach,
sharg::config{
.short_id = '\0',
.long_id = "partitioning-approach",
.description = "this is only configurable for debugging.",
.advanced = true});
parser.add_option(config.partitioning_approach,
sharg::config{.short_id = '\0',
.long_id = "partitioning-approach",
.description = "this is only configurable for debugging.",
.advanced = true});

parser.add_option(
config.hibf_config.tmax,
Expand Down

0 comments on commit 6d1fe08

Please sign in to comment.