3 // Copyright (C) 2005, 2006 Free Software Foundation, Inc.
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
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.
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.
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
31 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
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
43 * @file cc_hash_max_collision_check_resize_trigger_imp.hpp
44 * Contains a resize trigger implementation.
47 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
48 typedef detail::static_assert_dumclass<sizeof(detail::static_assert<(bool)(E)>)> \
49 UNIQUE##static_assert_type
53 cc_hash_max_collision_check_resize_trigger(float load) :
58 m_resize_needed(false)
64 notify_find_search_start()
70 notify_find_search_collision()
76 notify_find_search_end()
82 notify_insert_search_start()
90 notify_insert_search_collision()
98 notify_insert_search_end()
100 calc_resize_needed();
106 notify_erase_search_start()
112 notify_erase_search_collision()
118 notify_erase_search_end()
124 notify_inserted(size_type /*num_e*/)
130 notify_erased(size_type /*num_e*/)
132 m_resize_needed = true;
140 m_resize_needed = false;
146 is_resize_needed() const
148 return (m_resize_needed);
154 is_grow_needed(size_type /*size*/, size_type /*num_used_e*/) const
156 return (m_num_col >= m_max_col);
162 notify_resized(size_type new_size)
166 #ifdef PB_DS_HT_MAP_RESIZE_TRACE_
167 std::cerr << "chmccrt::notify_resized " <<
168 static_cast<unsigned long>(new_size) << std::endl;
169 #endif // #ifdef PB_DS_HT_MAP_RESIZE_TRACE_
173 calc_resize_needed();
183 // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) }
185 const double ln_arg = 2* m_size* ::log( (double)m_size);
187 m_max_col =(size_type)::ceil( ::sqrt(2* m_load* ::log(ln_arg) ) );
189 #ifdef PB_DS_HT_MAP_RESIZE_TRACE_
190 std::cerr << "chmccrt::calc_max_num_coll " <<
191 static_cast<unsigned long>(m_size) << " " <<
192 static_cast<unsigned long>(m_max_col) << std::endl;
193 #endif // #ifdef PB_DS_HT_MAP_RESIZE_TRACE_
199 notify_externally_resized(size_type new_size)
201 notify_resized(new_size);
207 swap(PB_DS_CLASS_C_DEC& other)
209 std::swap(m_load, other.m_load);
211 std::swap(m_size, other.m_size);
213 std::swap(m_num_col, other.m_num_col);
215 std::swap(m_max_col, other.m_max_col);
217 std::swap(m_resize_needed, other.m_resize_needed);
225 PB_DS_STATIC_ASSERT(access, external_load_access);
236 m_resize_needed || m_num_col >= m_max_col;
244 PB_DS_STATIC_ASSERT(access, external_load_access);
250 calc_resize_needed();
253 #undef PB_DS_STATIC_ASSERT