Thrill  0.1
prefix_quadrupling.hpp
Go to the documentation of this file.
1 /*******************************************************************************
2  * examples/suffix_sorting/prefix_quadrupling.hpp
3  *
4  * Part of Project Thrill - http://project-thrill.org
5  *
6  * Copyright (C) 2016 Florian Kurpicz <[email protected]>
7  *
8  * All rights reserved. Published under the BSD-2 license in the LICENSE file.
9  ******************************************************************************/
10 
11 #pragma once
12 #ifndef THRILL_EXAMPLES_SUFFIX_SORTING_PREFIX_QUADRUPLING_HEADER
13 #define THRILL_EXAMPLES_SUFFIX_SORTING_PREFIX_QUADRUPLING_HEADER
14 
15 #include <thrill/api/dia.hpp>
16 
17 namespace examples {
18 namespace suffix_sorting {
19 
20 template <typename Index, typename InputDIA>
22 PrefixQuadrupling(const InputDIA& input_dia, size_t input_size, bool packed);
23 
24 template <typename Index, typename InputDIA>
26 PrefixQuadruplingDiscarding(const InputDIA& input_dia, size_t input_size, bool packed);
27 
28 } // namespace suffix_sorting
29 } // namespace examples
30 
31 #endif // !THRILL_EXAMPLES_SUFFIX_SORTING_PREFIX_QUADRUPLING_HEADER
32 
33 /******************************************************************************/
DIA is the interface between the user and the Thrill framework.
Definition: dia.hpp:141
Definition: bfs.hpp:21
DIA< Index > PrefixQuadrupling(const InputDIA &input_dia, size_t input_size, bool packed)
DIA< Index > PrefixQuadruplingDiscarding(const InputDIA &input_dia, size_t input_size, bool packed)