]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.3.3/include/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.3.3 / include / ext / pb_ds / detail / resize_policy / cc_hash_max_collision_check_resize_trigger_imp.hpp
1 // -*- C++ -*-
2
3 // Copyright (C) 2005, 2006, 2007 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 cc_hash_max_collision_check_resize_trigger_imp.hpp
44  * Contains a resize trigger implementation.
45  */
46
47 PB_DS_CLASS_T_DEC
48 PB_DS_CLASS_C_DEC::
49 cc_hash_max_collision_check_resize_trigger(float load) :
50   m_load(load),
51   m_size(0),
52   m_num_col(0),
53   m_max_col(0),
54   m_resize_needed(false)
55 { }
56
57 PB_DS_CLASS_T_DEC
58 inline void
59 PB_DS_CLASS_C_DEC::
60 notify_find_search_start()
61 { }
62
63 PB_DS_CLASS_T_DEC
64 inline void
65 PB_DS_CLASS_C_DEC::
66 notify_find_search_collision()
67 { }
68
69 PB_DS_CLASS_T_DEC
70 inline void
71 PB_DS_CLASS_C_DEC::
72 notify_find_search_end()
73 { }
74
75 PB_DS_CLASS_T_DEC
76 inline void
77 PB_DS_CLASS_C_DEC::
78 notify_insert_search_start()
79 { m_num_col = 0; }
80
81 PB_DS_CLASS_T_DEC
82 inline void
83 PB_DS_CLASS_C_DEC::
84 notify_insert_search_collision()
85 { ++m_num_col; }
86
87 PB_DS_CLASS_T_DEC
88 inline void
89 PB_DS_CLASS_C_DEC::
90 notify_insert_search_end()
91 { calc_resize_needed(); }
92
93 PB_DS_CLASS_T_DEC
94 inline void
95 PB_DS_CLASS_C_DEC::
96 notify_erase_search_start()
97 { }
98
99 PB_DS_CLASS_T_DEC
100 inline void
101 PB_DS_CLASS_C_DEC::
102 notify_erase_search_collision()
103 { }
104
105 PB_DS_CLASS_T_DEC
106 inline void
107 PB_DS_CLASS_C_DEC::
108 notify_erase_search_end()
109 { }
110
111 PB_DS_CLASS_T_DEC
112 inline void
113 PB_DS_CLASS_C_DEC::
114 notify_inserted(size_type)
115 { }
116
117 PB_DS_CLASS_T_DEC
118 inline void
119 PB_DS_CLASS_C_DEC::
120 notify_erased(size_type)
121 { m_resize_needed = true; }
122
123 PB_DS_CLASS_T_DEC
124 void
125 PB_DS_CLASS_C_DEC::
126 notify_cleared()
127 { m_resize_needed = false; }
128
129 PB_DS_CLASS_T_DEC
130 inline bool
131 PB_DS_CLASS_C_DEC::
132 is_resize_needed() const
133 { return m_resize_needed; }
134
135 PB_DS_CLASS_T_DEC
136 inline bool
137 PB_DS_CLASS_C_DEC::
138 is_grow_needed(size_type /*size*/, size_type /*num_used_e*/) const
139 { return m_num_col >= m_max_col; }
140
141 PB_DS_CLASS_T_DEC
142 void
143 PB_DS_CLASS_C_DEC::
144 notify_resized(size_type new_size)
145 {
146   m_size = new_size;
147
148 #ifdef PB_DS_HT_MAP_RESIZE_TRACE_
149   std::cerr << "chmccrt::notify_resized " 
150             << static_cast<unsigned long>(new_size) << std::endl;
151 #endif 
152
153   calc_max_num_coll();
154   calc_resize_needed();
155   m_num_col = 0;
156 }
157
158 PB_DS_CLASS_T_DEC
159 void
160 PB_DS_CLASS_C_DEC::
161 calc_max_num_coll()
162 {
163   // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) }
164   const double ln_arg = 2 * m_size * std::log(double(m_size));
165   m_max_col = size_type(std::ceil(std::sqrt(2 * m_load * std::log(ln_arg))));
166
167 #ifdef PB_DS_HT_MAP_RESIZE_TRACE_
168   std::cerr << "chmccrt::calc_max_num_coll " 
169             << static_cast<unsigned long>(m_size) <<    "    " 
170             << static_cast<unsigned long>(m_max_col) << std::endl;
171 #endif 
172 }
173
174 PB_DS_CLASS_T_DEC
175 void
176 PB_DS_CLASS_C_DEC::
177 notify_externally_resized(size_type new_size)
178 { notify_resized(new_size); }
179
180 PB_DS_CLASS_T_DEC
181 void
182 PB_DS_CLASS_C_DEC::
183 swap(PB_DS_CLASS_C_DEC& other)
184 {
185   std::swap(m_load, other.m_load);
186   std::swap(m_size, other.m_size);
187   std::swap(m_num_col, other.m_num_col);
188   std::swap(m_max_col, other.m_max_col);
189   std::swap(m_resize_needed, other.m_resize_needed);
190 }
191
192 PB_DS_CLASS_T_DEC
193 inline float
194 PB_DS_CLASS_C_DEC::
195 get_load() const
196 {
197   PB_DS_STATIC_ASSERT(access, external_load_access);
198   return m_load;
199 }
200
201 PB_DS_CLASS_T_DEC
202 inline void
203 PB_DS_CLASS_C_DEC::
204 calc_resize_needed()
205 { m_resize_needed = m_resize_needed || m_num_col >= m_max_col; }
206
207 PB_DS_CLASS_T_DEC
208 void
209 PB_DS_CLASS_C_DEC::
210 set_load(float load)
211 {
212   PB_DS_STATIC_ASSERT(access, external_load_access);
213   m_load = load;
214   calc_max_num_coll();
215   calc_resize_needed();
216 }
217