SeqAn3  3.0.1
The Modern C++ library for sequence analysis.
align_config_vectorise.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, Knut Reinert & MPI für molekulare Genetik
4 // This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5 // shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6 // -----------------------------------------------------------------------------------------------------
7 
14 #pragma once
15 
19 
20 namespace seqan3::detail
21 {
22 
26 struct vectorise_tag : public pipeable_config_element<vectorise_tag, empty_type>
27 {
29  static constexpr detail::align_config_id id{detail::align_config_id::vectorise};
30 };
31 
32 } // namespace seqan3::detail
33 
34 namespace seqan3::align_cfg
35 {
36 
55 inline constexpr detail::vectorise_tag vectorise{};
56 
57 } // namespace seqan3::align_cfg
pipeable_config_element.hpp
Provides seqan3::pipeable_config_element.
seqan3::align_cfg::vectorise
constexpr detail::vectorise_tag vectorise
Enables the vectorised alignment computation if possible for the current configuration.
Definition: align_config_vectorise.hpp:55
seqan3::align_cfg
A special sub namespace for the alignment configurations.
Definition: align_config_aligned_ends.hpp:514
empty_type.hpp
Provides seqan3::detail::empty_type.
detail.hpp
Provides some utility functions for the alignment configurations.