]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/graph/README.md
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / graph / README.md
CommitLineData
1e59de90
TL
1Boost Graph Library [![Build Status](https://drone.cpp.al/api/badges/boostorg/graph/status.svg)](https://drone.cpp.al/boostorg/graph)[![Build Status](https://github.com/boostorg/graph/workflows/CI/badge.svg?branch=develop)](https://github.com/boostorg/graph/actions)
2
7c673cae
FG
3===================
4
5A generic interface for traversing graphs, using C++ templates.
6
7The full documentation is available on [boost.org](http://www.boost.org/doc/libs/release/libs/graph/doc/index.html).
8
9## Support, bugs and feature requests ##
10
20effc67
TL
11Bugs and feature requests can be reported through the [Github issue page](https://github.com/boostorg/graph/issues).
12
13See also:
14
15* [Current open issues](https://github.com/boostorg/graph/issues)
16* [Closed issues](https://github.com/boostorg/graph/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed)
17* Old issues still open on [Trac](https://svn.boost.org/trac/boost/query?status=!closed&component=graph&desc=1&order=id)
1e59de90 18* Closed issues on [Trac](https://svn.boost.org/trac/boost/query?status=closed&component=graph&col=id&col=summary&col=status&col=owner&col=type&col=milestone&col=version&desc=1&order=id)
7c673cae
FG
19
20You can submit your changes through a [pull request](https://github.com/boostorg/graph/pulls). One of the maintainers will take a look (remember that it can take some time).
21
22There is no mailing-list specific to Boost Graph, although you can use the general-purpose Boost [mailing-list](http://lists.boost.org/mailman/listinfo.cgi/boost-users) using the tag [graph].
23
24
25## Development ##
26
20effc67
TL
27| | Master | Develop |
28|------------------|----------|-------------|
1e59de90
TL
29| Github Actions | [![Build Status](https://github.com/boostorg/graph/workflows/CI/badge.svg?branch=master)](https://github.com/boostorg/graph/actions) | [![Build Status](https://github.com/boostorg/graph/workflows/CI/badge.svg?branch=develop)](https://github.com/boostorg/graph/actions) |
30|Drone | [![Build Status](https://drone.cpp.al/api/badges/boostorg/graph/status.svg?ref=refs/heads/master)](https://drone.cpp.al/boostorg/graph) | [![Build Status](https://drone.cpp.al/api/badges/boostorg/graph/status.svg)](https:/drone.cpp.al/boostorg/graph) |
20effc67 31
f67539c2 32Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)):
7c673cae
FG
33
34 git clone https://github.com/boostorg/boost
35 cd boost
36 git submodule update --init
37
f67539c2 38The Boost Graph Library is located in `libs/graph/`.
7c673cae
FG
39
40Boost Graph Library is mostly made of headers but also contains some compiled components. Here are the build commands:
f67539c2
TL
41
42 ./bootstrap.sh <- compile b2
7c673cae
FG
43 ./b2 headers <- just installs headers
44 ./b2 <- build compiled components
45
46**Note:** The Boost Graph Library cannot currently be built outside of Boost itself.
47
48### Running tests ###
f67539c2 49First, make sure you are in `libs/graph/test`.
7c673cae
FG
50You can either run all the 300+ tests listed in `Jamfile.v2` or run a single test:
51
52 ../../../b2 <- run all tests
53 ../../../b2 cycle_canceling_test <- single test
54
55You can also check the [regression tests reports](http://beta.boost.org/development/tests/develop/developer/graph.html).