Skip to content

Commit 431a062

Browse files
src/load_data_for_complexity.hpp: making forgotten change to type of rng seed in declaration of functions to load coverage counts
1 parent fb9b8e3 commit 431a062

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/load_data_for_complexity.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727

2828
std::size_t
2929
load_coverage_counts_MR(const std::string &input_file_name,
30-
const std::uint64_t seed, const std::size_t bin_size,
30+
const std::uint32_t seed, const std::size_t bin_size,
3131
const std::size_t max_width,
3232
std::vector<double> &coverage_hist);
3333

3434
std::size_t
3535
load_coverage_counts_GR(const std::string &input_file_name,
36-
const std::uint64_t seed, const std::size_t bin_size,
36+
const std::uint32_t seed, const std::size_t bin_size,
3737
const std::size_t max_width,
3838
std::vector<double> &coverage_hist);
3939

@@ -66,7 +66,7 @@ load_counts_BAM_se(const std::uint32_t n_threads,
6666
std::size_t
6767
load_coverage_counts_BAM(const std::uint32_t n_threads,
6868
const std::string &input_file_name,
69-
const std::uint64_t seed, const std::size_t bin_size,
69+
const std::uint32_t seed, const std::size_t bin_size,
7070
const std::size_t max_width,
7171
std::vector<double> &coverage_hist);
7272

0 commit comments

Comments
 (0)