Go to file
jzmaddock 8f5e1f1bf9
Merge pull request #164 from boostorg/develop
merge develop to master for release
2019-04-28 14:54:05 +01:00
build Merged Boost.Graph, Boost.Graph.Parallel, and Boost.PropertyMap changes from Boost trunk 2013-09-21 20:17:00 +00:00
doc Fix for a number of broken links. 2019-04-24 08:49:53 +02:00
example Fix for a number of broken links. 2019-04-24 08:49:53 +02:00
include/boost Fix for a number of broken links. 2019-04-24 08:49:53 +02:00
meta Fix typo 2017-09-06 16:46:05 +01:00
src Fix for a number of broken links. 2019-04-24 08:49:53 +02:00
test Merge pull request #144 from boostorg/testing-fixup 2019-01-25 19:01:01 +00:00
.clang-format Add a .clang-format file. (#68) 2016-10-31 13:21:10 -06:00
.gitattributes example files for boost graph library 2000-09-18 08:17:56 +00:00
.gitignore Fixed an incorrect file name in tests and added a git ignore for generated testing files. 2018-08-31 23:53:45 -04:00
.travis.yml Fix regressions & update .yml scripts 2018-12-19 23:32:51 -05:00
appveyor.yml Fix regressions & update .yml scripts 2018-12-19 23:32:51 -05:00
index.html Merge in Boost.Graph changes from RC_1_34_0 branch 2007-11-05 21:43:24 +00:00
README.md Fix dead links (#79) 2016-11-02 08:51:15 -06:00

Boost Graph Library

A generic interface for traversing graphs, using C++ templates.

The full documentation is available on boost.org.

Support, bugs and feature requests

Bugs and feature requests can be reported through the Trac issue tracker (see open issues and closed issues). Here is why Trac is still in use.

You can submit your changes through a pull request. One of the maintainers will take a look (remember that it can take some time).

There is no mailing-list specific to Boost Graph, although you can use the general-purpose Boost mailing-list using the tag [graph].

Development

Clone the whole boost project, which includes the individual Boost projects as submodules (see boost+git doc):

git clone https://github.com/boostorg/boost
cd boost
git submodule update --init

The Boost Graph Library is located in libs/graph/.

Boost Graph Library is mostly made of headers but also contains some compiled components. Here are the build commands:

./bootstrap.sh            <- compile b2 
./b2 headers              <- just installs headers
./b2                      <- build compiled components

Note: The Boost Graph Library cannot currently be built outside of Boost itself.

Running tests

First, make sure you are in libs/graph/test. You can either run all the 300+ tests listed in Jamfile.v2 or run a single test:

../../../b2                        <- run all tests
../../../b2 cycle_canceling_test   <- single test

You can also check the regression tests reports.