equal
deleted
inserted
replaced
16 |
16 |
17 //! Examples: initialize maps with some value; |
17 //! Examples: initialize maps with some value; |
18 //! after deleting an item from UnionFindEnum set its value in the |
18 //! after deleting an item from UnionFindEnum set its value in the |
19 //! corresponding map to NULL... |
19 //! corresponding map to NULL... |
20 static const bool ensure_safe_state = true; |
20 static const bool ensure_safe_state = true; |
|
21 |
|
22 static const int verbose = 5; |
21 }; |
23 }; |
22 |
24 |
23 struct DebugOff { |
25 struct DebugOff { |
24 static const bool consistensy_check = false; |
26 static const bool consistensy_check = false; |
25 static const bool range_check = false; |
27 static const bool range_check = false; |
26 static const bool ensure_safe_state = false; |
28 static const bool ensure_safe_state = false; |
|
29 static const int verbose = 0; |
27 }; |
30 }; |
28 |
31 |
29 #ifdef DEBUG |
32 #ifdef DEBUG |
30 typedef DebugOn DefaultDebugMode; |
33 typedef DebugOn DefaultDebugMode; |
31 #else |
34 #else |