COIN-OR::LEMON - Graph Library

Changeset 103:b68a7e348e00 in lemon-1.2


Ignore:
Timestamp:
02/29/08 12:01:39 (16 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Port kruskal() and UnionFind? from svn -r3468

The class type interface of Kruskal has not been ported yet

Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r69 r103  
    1919        lemon/dim2.h \
    2020        lemon/error.h \
     21        lemon/kruskal.h \
    2122        lemon/list_graph.h \
    2223        lemon/maps.h \
    2324        lemon/math.h \
    2425        lemon/random.h \
    25         lemon/tolerance.h
     26        lemon/tolerance.h \
     27        lemon/unionfind.h
    2628
    2729bits_HEADERS += \
  • test/Makefile.am

    r67 r103  
    1111        test/dim_test \
    1212        test/graph_test \
     13        test/kruskal_test \
    1314        test/maps_test \
    1415        test/random_test \
    1516        test/test_tools_fail \
    16         test/test_tools_pass
     17        test/test_tools_pass \
     18        test/unionfind_test
    1719
    1820TESTS += $(check_PROGRAMS)
     
    2325#test_error_test_SOURCES = test/error_test.cc
    2426test_graph_test_SOURCES = test/graph_test.cc
     27test_kruskal_test_SOURCES = test/kruskal_test.cc
    2528test_maps_test_SOURCES = test/maps_test.cc
    2629test_random_test_SOURCES = test/random_test.cc
    2730test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    2831test_test_tools_pass_SOURCES = test/test_tools_pass.cc
     32test_unionfind_test_SOURCES = test/unionfind_test.cc
Note: See TracChangeset for help on using the changeset viewer.