COIN-OR::LEMON - Graph Library

Changeset 2333:8070a099ffb6 in lemon-0.x for lemon/bits


Ignore:
Timestamp:
12/19/06 16:53:42 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3119
Message:

MACROS for debug map usage

Location:
lemon/bits
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/debug_map.h

    r2289 r2333  
    3737///\brief Vector based graph maps for debugging.
    3838namespace lemon {
     39
     40#ifndef LEMON_STRICT_DEBUG_MAP
     41#define LEMON_STRICT_DEBUG_MAP false
     42#endif
    3943
    4044  /// \ingroup graphbits
     
    6771  public:
    6872
    69     static const bool strictCheck = false;
     73    static const bool strictCheck = LEMON_STRICT_DEBUG_MAP;
    7074
    7175    struct MapError {
  • lemon/bits/default_map.h

    r2202 r2333  
    3232 
    3333 
    34 #ifndef _GLIBCXX_DEBUG
     34#ifndef LEMON_USE_DEBUG_MAP
    3535
    3636  template <typename _Graph, typename _Item, typename _Value>
Note: See TracChangeset for help on using the changeset viewer.