From 1a09654d15393ba6a1b0e70a6aba9a0f9a1087de Mon Sep 17 00:00:00 2001 From: Simon Gene Gottlieb Date: Wed, 28 Feb 2024 11:08:51 +0100 Subject: [PATCH] fix,doc: condition of the max number of 1s inside a shape. --- include/seqan3/search/views/kmer_hash.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/seqan3/search/views/kmer_hash.hpp b/include/seqan3/search/views/kmer_hash.hpp index 8315109323..48276e80fa 100644 --- a/include/seqan3/search/views/kmer_hash.hpp +++ b/include/seqan3/search/views/kmer_hash.hpp @@ -709,7 +709,7 @@ namespace seqan3::views * * \attention * For the alphabet size \f$\sigma\f$ of the alphabet of `urange` and the number of 1s \f$s\f$ of `shape` it must hold - * that \f$s>\frac{64}{\log_2\sigma}\f$, i.e. hashes resulting from the shape/alphabet combination can be represented + * that \f$s \le \frac{64}{\log_2\sigma}\f$, i.e. hashes resulting from the shape/alphabet combination can be represented * in an `uint64_t`. * * ### View properties