Install gcc-4.4.0-tdm-1-core-2.tar.gz
[msysgit.git] / mingw / lib / gcc / mingw32 / 4.3.3 / include / c++ / ext / pb_ds / detail / left_child_next_sibling_heap_ / debug_fn_imps.hpp
blobf16e912018fb2b254d8c0ec4040503917475b811
1 // -*- C++ -*-
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.
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
29 // Public License.
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
40 // warranty.
42 /**
43 * @file debug_fn_imps.hpp
44 * Contains an implementation class for left_child_next_sibling_heap_.
47 #ifdef _GLIBCXX_DEBUG
49 PB_DS_CLASS_T_DEC
50 void
51 PB_DS_CLASS_C_DEC::
52 assert_valid() const
54 _GLIBCXX_DEBUG_ASSERT(m_p_root == NULL || m_p_root->m_p_prev_or_parent == NULL);
56 if (m_p_root != NULL)
57 assert_node_consistent(m_p_root, Single_Link_Roots);
58 assert_size();
59 assert_iterators();
62 PB_DS_CLASS_T_DEC
63 void
64 PB_DS_CLASS_C_DEC::
65 assert_node_consistent(const_node_pointer p_nd, bool single_link) const
67 if (p_nd == NULL)
68 return;
70 assert_node_consistent(p_nd->m_p_l_child, false);
71 assert_node_consistent(p_nd->m_p_next_sibling, single_link);
73 if (single_link)
74 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_prev_or_parent == NULL);
75 else if (p_nd->m_p_next_sibling != NULL)
76 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd);
78 if (p_nd->m_p_l_child == NULL)
79 return;
81 const_node_pointer p_child = p_nd->m_p_l_child;
82 while (p_child != NULL)
84 const_node_pointer p_next_child = p_child->m_p_next_sibling;
85 _GLIBCXX_DEBUG_ASSERT(!Cmp_Fn::operator()(p_nd->m_value, p_child->m_value));
86 p_child = p_next_child;
88 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_l_child->m_p_prev_or_parent == p_nd);
91 PB_DS_CLASS_T_DEC
92 void
93 PB_DS_CLASS_C_DEC::
94 assert_iterators() const
96 const size_type calc_size = std::distance(begin(), end());
97 if (calc_size == size())
98 return;
99 _GLIBCXX_DEBUG_ASSERT(0);
102 PB_DS_CLASS_T_DEC
103 void
104 PB_DS_CLASS_C_DEC::
105 assert_size() const
107 if (size_from_node(m_p_root) == m_size)
108 return;
109 _GLIBCXX_DEBUG_ASSERT(0);
112 PB_DS_CLASS_T_DEC
113 typename PB_DS_CLASS_C_DEC::size_type
114 PB_DS_CLASS_C_DEC::
115 size_under_node(const_node_pointer p_nd)
116 { return 1 + size_from_node(p_nd->m_p_l_child); }
118 PB_DS_CLASS_T_DEC
119 typename PB_DS_CLASS_C_DEC::size_type
120 PB_DS_CLASS_C_DEC::
121 size_from_node(const_node_pointer p_nd)
123 size_type ret = 0;
124 while (p_nd != NULL)
126 ret += 1 + size_from_node(p_nd->m_p_l_child);
127 p_nd = p_nd->m_p_next_sibling;
129 return ret;
132 PB_DS_CLASS_T_DEC
133 typename PB_DS_CLASS_C_DEC::size_type
134 PB_DS_CLASS_C_DEC::
135 degree(const_node_pointer p_nd)
137 size_type ret = 0;
138 const_node_pointer p_child = p_nd->m_p_l_child;
139 while (p_child != NULL)
141 ++ret;
142 p_child = p_child->m_p_next_sibling;
144 return ret;
147 #endif