File: intrusive_boost_splay_set.cpp

package info (click to toggle)
libcds 2.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 15,564 kB
  • sloc: cpp: 135,002; ansic: 7,218; perl: 243; sh: 237; makefile: 6
file content (43 lines) | stat: -rw-r--r-- 1,483 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2006-2018 Maxim Khizhinsky
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)

#ifdef CDSUNIT_ENABLE_BOOST_CONTAINER

#include <boost/version.hpp>

#include "test_intrusive_striped_set.h"
#include <cds/intrusive/striped_set/boost_splay_set.h>

namespace {
    namespace ci = cds::intrusive;
    namespace bi = boost::intrusive;

    struct test_traits
    {
#if BOOST_VERSION < 105600
        typedef bi::splay_set_member_hook<> splay_set_member_hook;
        typedef bi::splay_set_base_hook<> splay_set_base_hook;
#else
        typedef bi::bs_set_base_hook<> splay_set_base_hook;
        typedef bi::bs_set_member_hook<> splay_set_member_hook;
#endif
        typedef cds_test::intrusive_set::base_int_item< splay_set_base_hook > base_item;
        typedef cds_test::intrusive_set::member_int_item< splay_set_member_hook > member_item;

        typedef bi::splay_set< base_item,
            bi::compare< cds_test::intrusive_set::less< base_item >>
        > base_hook_container;

        typedef bi::splay_set< member_item,
            bi::member_hook< member_item, splay_set_member_hook, &member_item::hMember>,
            bi::compare< cds_test::intrusive_set::less< member_item >>
        > member_hook_container;
    };

    INSTANTIATE_TYPED_TEST_CASE_P( BoostSplaySet, IntrusiveStripedSet, test_traits );

} // namespace

#endif // CDSUNIT_ENABLE_BOOST_CONTAINER