]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/util/common_type/assoc/template_policy.hpp
typelist_assoc_container.hpp: Remove, unused.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / util / common_type / assoc / template_policy.hpp
CommitLineData
4569a895
AT
1// -*- C++ -*-
2
3// Copyright (C) 2005, 2006 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the terms
7// of the GNU General Public License as published by the Free Software
8// Foundation; either version 2, or (at your option) any later
9// version.
10
11// This library is distributed in the hope that it will be useful, but
12// WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// General Public License for more details.
15
16// You should have received a copy of the GNU General Public License
17// along with this library; see the file COPYING. If not, write to
18// the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
19// MA 02111-1307, USA.
20
21// As a special exception, you may use this file as part of a free
22// software library without restriction. Specifically, if other files
23// instantiate templates or use macros or inline functions from this
24// file, or you compile this file and link it with other files to
25// produce an executable, this file does not by itself cause the
26// resulting executable to be covered by the GNU General Public
27// License. This exception does not however invalidate any other
28// reasons why the executable file might be covered by the GNU General
29// Public License.
30
31// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
32
33// Permission to use, copy, modify, sell, and distribute this software
34// is hereby granted without fee, provided that the above copyright
35// notice appears in all copies, and that both that copyright notice
36// and this permission notice appear in supporting documentation. None
37// of the above authors, nor IBM Haifa Research Laboratories, make any
38// representation about the suitability of this software for any
39// purpose. It is provided "as is" without express or implied
40// warranty.
41
42/**
43 * @file template_policy.hpp
44 * Contains template versions of policies.
45 */
46
47#ifndef PB_DS_TEMPLATE_POLICY_HPP
48#define PB_DS_TEMPLATE_POLICY_HPP
49
d7f245b1 50#include <ext/typelist.h>
4569a895
AT
51#include <ext/pb_ds/hash_policy.hpp>
52#include <ext/pb_ds/tree_policy.hpp>
53#include <ext/pb_ds/list_update_policy.hpp>
54
55namespace pb_ds
56{
57
58 namespace test
59 {
60
61 template<typename Allocator>
62 struct direct_mask_range_hashing_t_ : public pb_ds::direct_mask_range_hashing<
63 typename Allocator::size_type>
64 {
65 typedef
66 pb_ds::direct_mask_range_hashing<
67 typename Allocator::size_type>
68 base_type;
69 };
70
71 template<typename Allocator>
72 struct direct_mod_range_hashing_t_ : public pb_ds::direct_mod_range_hashing<
73 typename Allocator::size_type>
74 {
75 typedef
76 pb_ds::direct_mod_range_hashing<
77 typename Allocator::size_type>
78 base_type;
79 };
80
81 template<typename Allocator,
82 typename Allocator::size_type Min_Load_Nom,
83 typename Allocator::size_type Min_Load_Denom,
84 typename Allocator::size_type Max_Load_Nom,
85 typename Allocator::size_type Max_Load_Denom,
86 bool External_Access>
87 struct hash_load_check_resize_trigger_t_ : public pb_ds::hash_load_check_resize_trigger<
88 External_Access,
89 typename Allocator::size_type>
90 {
91 typedef
92 pb_ds::hash_load_check_resize_trigger<
93 External_Access,
94 typename Allocator::size_type>
95 base_type;
96
97 inline
98 hash_load_check_resize_trigger_t_() : base_type(
99 static_cast<float>(Min_Load_Nom) /
100 static_cast<float>(Min_Load_Denom),
101 static_cast<float>(Max_Load_Nom) /
102 static_cast<float>(Max_Load_Denom))
103 { }
104
105 enum
106 {
107 get_set_loads = External_Access,
108 get_set_load = false
109 };
110 };
111
112 template<typename Allocator,
113 typename Allocator::size_type Load_Nom,
114 typename Allocator::size_type Load_Denom,
115 bool External_Access>
116 struct cc_hash_max_collision_check_resize_trigger_t_ : public pb_ds::cc_hash_max_collision_check_resize_trigger<
117 External_Access,
118 typename Allocator::size_type>
119 {
120 typedef
121 pb_ds::cc_hash_max_collision_check_resize_trigger<
122 External_Access,
123 typename Allocator::size_type>
124 base_type;
125
126 inline
127 cc_hash_max_collision_check_resize_trigger_t_() : base_type(
128 static_cast<float>(Load_Nom) /
129 static_cast<float>(Load_Denom))
130 { }
131
132 enum
133 {
134 get_set_load = External_Access,
135 get_set_loads = false
136 };
137 };
138
139 struct hash_prime_size_policy_t_ : public pb_ds::hash_prime_size_policy
140 { };
141
142 template<typename Allocator>
143 struct hash_exponential_size_policy_t_ : public pb_ds::hash_exponential_size_policy<
144 typename Allocator::size_type>
145 {
146 // Nothing
147 };
148
149 template<typename Key, class Allocator>
150 struct linear_probe_fn_t_ : public pb_ds::linear_probe_fn<
151 typename Allocator::size_type>
152 { };
153
154 template<typename Key, class Allocator>
155 struct quadratic_probe_fn_t_ : public pb_ds::quadratic_probe_fn<
156 typename Allocator::size_type>
157 { };
158
159 template<typename Allocator, typename Allocator::size_type Max_Count>
160 struct counter_lu_policy_t_ : public pb_ds::counter_lu_policy<
161 Max_Count,
162 Allocator>
163 {
164 typedef pb_ds::counter_lu_policy< Max_Count, Allocator> base_type;
165 };
166
167 struct move_to_front_lu_policy_t_ : public pb_ds::move_to_front_lu_policy<>
168 { };
169
170 } // namespace test
171
172} // namespace pb_ds
173
174#endif // #ifndef PB_DS_TEMPLATE_POLICY_HPP
175