SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
alignment_score_matrix_proxy.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
14
15namespace seqan3::detail
16{
17
31template <typename score_type>
33{
35 "Value type must either be an arithmetic type or a simd vector type.");
36
42};
43} // namespace seqan3::detail
@ score_type
ID for the score_type option.
A type that satisfies std::is_arithmetic_v<t>.
The generic simd concept.
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
A proxy type for a unified access to the score matrix during alignment computation.
Definition alignment_score_matrix_proxy.hpp:33
score_type & r_left
The last value to the left.
Definition alignment_score_matrix_proxy.hpp:39
score_type & current
The current value.
Definition alignment_score_matrix_proxy.hpp:37
score_type & up
The last value above.
Definition alignment_score_matrix_proxy.hpp:41
score_type & diagonal
The last diagonal value.
Definition alignment_score_matrix_proxy.hpp:38
score_type & w_left
The next value to the left.
Definition alignment_score_matrix_proxy.hpp:40
Provides concepts that do not have equivalents in C++20.
Provides seqan3::simd::simd_concept.
Hide me