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
13#include <seqan3/utility/simd/concept.hpp>
14
15namespace seqan3::detail
16{
17
31template <typename score_type>
32struct alignment_score_matrix_proxy
33{
34 static_assert(arithmetic<score_type> || simd_concept<score_type>,
35 "Value type must either be an arithmetic type or a simd vector type.");
36
37 score_type & current;
38 score_type & diagonal;
39 score_type & r_left;
40 score_type & w_left;
41 score_type & up;
42};
43} // namespace seqan3::detail
A type that satisfies std::is_arithmetic_v<t>.
Provides concepts that do not have equivalents in C++20.
Hide me