equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/debug.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/debug.h - Part of LEMON, a generic C++ optimization library |
3 * |
3 * |
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
5 * (Egervary Combinatorial Optimization Research Group, EGRES). |
5 * (Egervary Combinatorial Optimization Research Group, EGRES). |
6 * |
6 * |
7 * Permission to use, modify and distribute this software is granted |
7 * Permission to use, modify and distribute this software is granted |
12 * express or implied, and with no claim as to its suitability for any |
12 * express or implied, and with no claim as to its suitability for any |
13 * purpose. |
13 * purpose. |
14 * |
14 * |
15 */ |
15 */ |
16 |
16 |
17 #ifndef HUGO_DEBUG_H |
17 #ifndef LEMON_DEBUG_H |
18 #define HUGO_DEBUG_H |
18 #define LEMON_DEBUG_H |
19 |
19 |
20 //! \file |
20 //! \file |
21 //! \brief Basic definitions for debug control. |
21 //! \brief Basic definitions for debug control. |
22 |
22 |
23 namespace hugo { |
23 namespace lemon { |
24 |
24 |
25 //! Debug mode for testing/debugging |
25 //! Debug mode for testing/debugging |
26 |
26 |
27 //! Use this debug mode if you want exhaustive range and consistency checks. |
27 //! Use this debug mode if you want exhaustive range and consistency checks. |
28 //! It also produces verbose debug messages. |
28 //! It also produces verbose debug messages. |
65 //! |
65 //! |
66 typedef DebugOff DefaultDebugMode; |
66 typedef DebugOff DefaultDebugMode; |
67 #endif |
67 #endif |
68 |
68 |
69 } |
69 } |
70 #endif // HUGO_DEBUG_H |
70 #endif // LEMON_DEBUG_H |