* This file is a part of LEMON, a generic C++ optimization library
* Copyright (C) 2003-2008
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
///\brief Classes for representing paths in digraphs.
#ifndef LEMON_PATH_UTILS_H
#define LEMON_PATH_UTILS_H
#include <lemon/concepts/path.h>
template <typename Path, typename Enable = void>
static const bool value = false;
template <typename Digraph>
typename enable_if<typename Digraph::RevTag, void>::type
static const bool value = true;
template <typename Target, typename Source,
typename BuildEnable = void, typename RevEnable = void>
struct PathCopySelector {
static void copy(Target& target, const Source& source) {
for (typename Source::ArcIt it(source); it != INVALID; ++it) {
template <typename Target, typename Source, typename BuildEnable>
Target, Source, BuildEnable,
typename enable_if<typename Source::RevPathTag, void>::type> {
static void copy(Target& target, const Source& source) {
for (typename Source::RevArcIt it(source); it != INVALID; ++it) {
template <typename Target, typename Source, typename RevEnable>
typename enable_if<typename Target::BuildTag, void>::type, RevEnable> {
static void copy(Target& target, const Source& source) {
template <typename Target, typename Source>
typename enable_if<typename Target::BuildTag, void>::type,
typename enable_if<typename Source::RevPathTag, void>::type> {
static void copy(Target& target, const Source& source) {
/// \brief Make of copy of a path.
/// Make of copy of a path.
template <typename Target, typename Source>
void copyPath(Target& target, const Source& source) {
checkConcept<concepts::PathDumper<typename Source::Digraph>, Source>();
_path_bits::PathCopySelector<Target, Source>::copy(target, source);
/// \brief Checks the path's consistency.
/// Checks that each arc's target is the next's source.
template <typename Digraph, typename Path>
bool checkPath(const Digraph& digraph, const Path& path) {
typename Path::ArcIt it(path);
if (it == INVALID) return true;
typename Digraph::Node node = digraph.target(it);
if (digraph.source(it) != node) return false;
node = digraph.target(it);
/// \brief Gives back the source of the path
/// Gives back the source of the path.
template <typename Digraph, typename Path>
typename Digraph::Node pathSource(const Digraph& digraph, const Path& path) {
return digraph.source(path.front());
/// \brief Gives back the target of the path
/// Gives back the target of the path.
template <typename Digraph, typename Path>
typename Digraph::Node pathTarget(const Digraph& digraph, const Path& path) {
return digraph.target(path.back());
/// \brief Class which helps to iterate the nodes of a path
/// In a sense, the path can be treated as a list of arcs. The
/// lemon path type stores just this list. As a consequence it
/// cannot enumerate the nodes in the path and the zero length paths
/// cannot store the node.
/// This class implements the node iterator of a path structure. To
/// provide this feature, the underlying digraph should be given to
/// the constructor of the iterator.
const typename Path::Digraph *_digraph;
typename Path::ArcIt _it;
typename Path::Digraph::Node _nd;
typedef typename Path::Digraph Digraph;
typedef typename Digraph::Node Node;
: _digraph(0), _it(INVALID), _nd(INVALID) {}
PathNodeIt(const Digraph& digraph, const Path& path)
: _digraph(&digraph), _it(path) {
_nd = (_it != INVALID ? _digraph->source(_it) : INVALID);
PathNodeIt(const Digraph& digraph, const Path& path, const Node& src)
: _digraph(&digraph), _it(path), _nd(src) {}
///Conversion to Digraph::Node
PathNodeIt& operator++() {
if (_it == INVALID) _nd = INVALID;
_nd = _digraph->target(_it);
bool operator==(const PathNodeIt& n) const {
return _it == n._it && _nd == n._nd;
bool operator!=(const PathNodeIt& n) const {
return _it != n._it || _nd != n._nd;
bool operator<(const PathNodeIt& n) const {
return (_it < n._it && _nd != INVALID);