trace_fn_imps.hpp revision 169692
185Scth// -*- C++ -*-
285Scth
385Scth// Copyright (C) 2005, 2006 Free Software Foundation, Inc.
485Scth//
57656SSherry.Moore@Sun.COM// This file is part of the GNU ISO C++ Library.  This library is free
67656SSherry.Moore@Sun.COM// software; you can redistribute it and/or modify it under the terms
785Scth// of the GNU General Public License as published by the Free Software
885Scth// Foundation; either version 2, or (at your option) any later
985Scth// version.
1085Scth
1185Scth// This library is distributed in the hope that it will be useful, but
1285Scth// WITHOUT ANY WARRANTY; without even the implied warranty of
1385Scth// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1485Scth// General Public License for more details.
1585Scth
1685Scth// You should have received a copy of the GNU General Public License
1785Scth// along with this library; see the file COPYING.  If not, write to
1885Scth// the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
1985Scth// MA 02111-1307, USA.
2085Scth
2185Scth// As a special exception, you may use this file as part of a free
229106SSrivijitha.Dugganapalli@Sun.COM// software library without restriction.  Specifically, if other files
2385Scth// instantiate templates or use macros or inline functions from this
2485Scth// file, or you compile this file and link it with other files to
2585Scth// produce an executable, this file does not by itself cause the
2685Scth// resulting executable to be covered by the GNU General Public
2785Scth// License.  This exception does not however invalidate any other
2885Scth// reasons why the executable file might be covered by the GNU General
2985Scth// Public License.
3085Scth
3185Scth// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
3285Scth
3385Scth// Permission to use, copy, modify, sell, and distribute this software
3485Scth// is hereby granted without fee, provided that the above copyright
3585Scth// notice appears in all copies, and that both that copyright notice
3685Scth// and this permission notice appear in supporting documentation. None
3785Scth// of the above authors, nor IBM Haifa Research Laboratories, make any
3885Scth// representation about the suitability of this software for any
3985Scth// purpose. It is provided "as is" without express or implied
4085Scth// warranty.
4185Scth
4285Scth/**
4385Scth * @file trace_fn_imps.hpp
4485Scth * Contains an implementation class for left_child_next_sibling_heap_.
4585Scth */
4685Scth
4785Scth#ifdef PB_DS_THIN_HEAP_TRACE_
4885Scth
4985ScthPB_DS_CLASS_T_DEC
5085Scthvoid
5185ScthPB_DS_CLASS_C_DEC::
5285Scthtrace() const
5385Scth{
5485Scth  std::cerr << std::endl;
5585Scth
5685Scth  std::cerr << "m_p_max " << m_p_max << std::endl;
5785Scth
5885Scth  base_type::trace();
5985Scth}
6085Scth
6185Scth#endif // #ifdef PB_DS_THIN_HEAP_TRACE_
6285Scth