18#include <seqan3/utility/simd/concept.hpp>
20namespace seqan3::detail
32template <
typename score_t>
33struct alignment_score_matrix_one_column_base
37 "Score type must either be either an arithmetic type or a simd vector type.");
40 using underlying_type = score_t;
44 using allocator_type = aligned_allocator<element_type,
sizeof(element_type)>;
48 using size_type = size_t;
Provides seqan3::aligned_allocator.
A type that satisfies std::is_arithmetic_v<t>.
Provides concepts that do not have equivalents in C++20.