2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00
Files
graph/test/Jamfile
Douglas Gregor ce8344e9ad Overall: introduce bundled properties
index.htm:
  - Announce bundled properties

libs/graph/doc/bundles.html:
  - Document bundled properties

libs/graph/doc/adjacency_list.html:
  - Refer to bundled properties

boost/graph/properties.hpp:
  - Added vertex_bundle and edge_bundle properties for bundling
  - Added bundle_property_map for directly handling bundles

boost/pending/property.hpp:
  - Added retag_property_list metafunction that allows us to add a tag
    to the non-property<> element at the end of a property<> list.

boost/graph/adjacency_list.hpp:
  - Implement bundled properties

libs/graph/test/Jamfile, libs/graph/test/bundled_properties.cpp:
  - Test bundled properties


[SVN r22819]
2004-05-14 05:53:33 +00:00

79 lines
2.2 KiB
Plaintext

# Define SGB (stanford graph base top level directory) and
# LEDA (also top level directory) at the command line of jam using -s
subproject libs/graph/test ;
import testing ;
test-suite graph :
[ run transitive_closure_test.cpp : : : <sysinclude>$(BOOST_ROOT) ]
[ compile adj_list_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
# adj_list_test needs some work -JGS
# unit-test adj_list_test : adj_list_test.cpp : <sysinclude>$(BOOST_ROOT) ;
[ compile adj_matrix_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ run bfs.cpp <lib>../../test/build/boost_test_exec_monitor
: : : <sysinclude>$(BOOST_ROOT) ]
[ compile bfs_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ run dfs.cpp <lib>../../test/build/boost_test_exec_monitor
: : : <sysinclude>$(BOOST_ROOT) ]
[ compile dfs_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ compile dijkstra_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ compile edge_list_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ compile filtered_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ run graph.cpp : : : <sysinclude>$(BOOST_ROOT) ]
[ compile graph_concepts.cpp : <sysinclude>$(BOOST_ROOT) ]
[ compile reverse_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ run subgraph.cpp <lib>../../test/build/boost_test_exec_monitor
: : : <sysinclude>$(BOOST_ROOT) ]
[ run isomorphism.cpp <lib>../../test/build/boost_test_exec_monitor
: : : <sysinclude>$(BOOST_ROOT) ]
[ run adjacency_matrix_test.cpp : : : <sysinclude>$(BOOST_ROOT) ]
[ compile vector_graph_cc.cpp : <sysinclude>$(BOOST_ROOT) ]
[ compile copy.cpp : <sysinclude>$(BOOST_ROOT) ]
[ compile property_iter.cpp : <sysinclude>$(BOOST_ROOT) ]
[ run bundled_properties.cpp ]
;
# Run SDB tests only when -sSDB= is set.
if $(SDB) != ""
{
local SDB_DEPENDCIES =
<include>$(SGB) <library-file>$(SGB)/libgb.a ;
compile stanford_graph_cc.cpp : <sysinclude>$(BOOST_ROOT)
$(SDB_DEPENDCIES) ;
}
# Run LEDA tests only when -sLEDA= is set.
if $(LEDA) != ""
{
local LEDA_DEPENDENCIES =
<include>$(LEDA)/incl
<library-file>$(LEDA)/libG.a
;
compile leda_graph_cc.cpp : <sysinclude>$(BOOST_ROOT)
$(LEDA_DEPENDENCIES) ;
}