BWAPI
|
00001 // Copyright (c) 1997-2007 ETH Zurich (Switzerland). 00002 // All rights reserved. 00003 // 00004 // This file is part of CGAL (www.cgal.org); you may redistribute it under 00005 // the terms of the Q Public License version 1.0. 00006 // See the file LICENSE.QPL distributed with CGAL. 00007 // 00008 // Licensees holding a valid commercial license may use this file in 00009 // accordance with the commercial license agreement provided with the software. 00010 // 00011 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00012 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00013 // 00014 // $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.5-branch/QP_solver/include/CGAL/QP_solver/debug.h $ 00015 // $Id: debug.h 38453 2007-04-27 00:34:44Z gaertner $ 00016 // 00017 // 00018 // Author(s) : Sven Schoenherr 00019 // Bernd Gaertner <gaertner@inf.ethz.ch> 00020 // Franz Wessendorp 00021 // Kaspar Fischer 00022 00023 #ifndef CGAL_QP_DEBUG_H 00024 #define CGAL_QP_DEBUG_H 00025 00026 // macro definitions 00027 // ================= 00028 00029 // debug 00030 // ----- 00031 #if ( defined( CGAL_QP_NO_DEBUG)\ 00032 || defined( CGAL_QP_NO_ASSERTIONS)\ 00033 || defined( CGAL_NO_ASSERTIONS)\ 00034 || defined( CGAL_NO_DEBUG) || defined( NDEBUG)) 00035 # define CGAL_qpe_debug if ( 0) 00036 #else 00037 # define CGAL_qpe_debug if ( 1) 00038 #endif // qpe debug 00039 00040 #endif // CGAL_QP_DEBUG_H 00041 00042 // ===== EOF ==================================================================