7 //! \brief Basic definitions for debug control.
12 //! Example: check whether the edges added to a path are adjacent
13 static const bool consistensy_check = true;
15 static const bool range_check = true;
17 //! Examples: initialize maps with some value;
18 //! after deleting an item from UnionFindEnum set its value in the
19 //! corresponding map to NULL...
20 static const bool ensure_safe_state = true;
22 static const int verbose = 5;
26 static const bool consistensy_check = false;
27 static const bool range_check = false;
28 static const bool ensure_safe_state = false;
29 static const int verbose = 0;
33 typedef DebugOn DefaultDebugMode;
35 typedef DebugOff DefaultDebugMode;
39 #endif // HUGO_DEBUG_H