COIN-OR::LEMON - Graph Library

Changeset 966:c8fce9beb46a in lemon-main for lemon/core.h


Ignore:
Timestamp:
12/20/11 19:25:40 (12 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
958:9a716871028e (diff), 965:a1fd7008a052 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge head merging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/core.h

    r964 r966  
    447447
    448448  }
     449
     450  /// \brief Check whether a graph is undirected.
     451  ///
     452  /// This function returns \c true if the given graph is undirected.
     453#ifdef DOXYGEN
     454  template <typename GR>
     455  bool undirected(const GR& g) { return false; }
     456#else
     457  template <typename GR>
     458  typename enable_if<UndirectedTagIndicator<GR>, bool>::type
     459  undirected(const GR&) {
     460    return true;
     461  }
     462  template <typename GR>
     463  typename disable_if<UndirectedTagIndicator<GR>, bool>::type
     464  undirected(const GR&) {
     465    return false;
     466  }
     467#endif
    449468
    450469  /// \brief Class to copy a digraph.
Note: See TracChangeset for help on using the changeset viewer.