COIN-OR::LEMON - Graph Library

Changeset 1979:c2992fd74dad in lemon-0.x for lemon/kruskal.h


Ignore:
Timestamp:
02/22/06 19:26:56 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2569
Message:

Mergeing extendermerge branch
Changes:

the extender system
resize for static size graph
UGraphExtender => UndirectGraphExtender?

UGraphExtenders with changed meaning

Some UGraphExtender /SubUGraphExtenders, DirectUGraphExtender/
GridGraph? => GridUGraph
radix sort to ansi compatible

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/kruskal.h

    r1956 r1979  
    2424#include <lemon/unionfind.h>
    2525#include <lemon/utility.h>
     26#include <lemon/traits.h>
    2627
    2728/**
     
    229230
    230231    template<class _GR>
    231     typename enable_if<typename _GR::UTag,void>::type
     232    typename enable_if<UndirectedTagIndicator<_GR>,void>::type
    232233    fillWithEdges(const _GR& g, const Map& m,dummy<0> = 0)
    233234    {
     
    237238
    238239    template<class _GR>
    239     typename disable_if<typename _GR::UTag,void>::type
     240    typename disable_if<UndirectedTagIndicator<_GR>,void>::type
    240241    fillWithEdges(const _GR& g, const Map& m,dummy<1> = 1)
    241242    {
Note: See TracChangeset for help on using the changeset viewer.