{"id":20077364,"url":"https://github.com/boostorg/graph","last_synced_at":"2025-04-04T09:09:08.288Z","repository":{"id":6353157,"uuid":"7589985","full_name":"boostorg/graph","owner":"boostorg","description":"Boost.org graph module","archived":false,"fork":false,"pushed_at":"2024-04-14T07:48:42.000Z","size":28852,"stargazers_count":296,"open_issues_count":118,"forks_count":204,"subscribers_count":16,"default_branch":"develop","last_synced_at":"2024-04-14T12:04:23.362Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://boost.org/libs/graph","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boostorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2013-01-13T15:59:14.000Z","updated_at":"2024-04-17T01:46:33.619Z","dependencies_parsed_at":"2024-01-01T04:47:40.740Z","dependency_job_id":"475ed923-7f6e-417d-9e24-df757d80f1e3","html_url":"https://github.com/boostorg/graph","commit_stats":{"total_commits":3412,"total_committers":130,"mean_commits":"26.246153846153845","dds":0.5890973036342322,"last_synced_commit":"00028767d804fe3da20996afedf06f9eecfb5975"},"previous_names":[],"tags_count":125,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boostorg%2Fgraph","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boostorg%2Fgraph/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boostorg%2Fgraph/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boostorg%2Fgraph/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boostorg","download_url":"https://codeload.github.com/boostorg/graph/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247149501,"owners_count":20891954,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T15:07:39.762Z","updated_at":"2025-04-04T09:09:08.268Z","avatar_url":"https://github.com/boostorg.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Boost Graph Library\n\n===================\n\nA generic interface for traversing graphs, using C++ templates.\n\nThe full documentation is available on [boost.org](http://www.boost.org/doc/libs/release/libs/graph/doc/index.html).\n\n## Support, bugs and feature requests\n\nBugs and feature requests can be reported through the [Github issue page](https://github.com/boostorg/graph/issues).\n\nSee also:\n\n* [Current open issues](https://github.com/boostorg/graph/issues)\n* [Closed issues](https://github.com/boostorg/graph/issues?utf8=%E2%9C%93\u0026q=is%3Aissue+is%3Aclosed)\n* Old issues still open on [Trac](https://svn.boost.org/trac/boost/query?status=!closed\u0026component=graph\u0026desc=1\u0026order=id)\n* Closed issues on [Trac](https://svn.boost.org/trac/boost/query?status=closed\u0026component=graph\u0026col=id\u0026col=summary\u0026col=status\u0026col=owner\u0026col=type\u0026col=milestone\u0026col=version\u0026desc=1\u0026order=id)\n\nYou 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).\n\nThere 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].\n\n\n### Build Status\n\n|                  |  Master  |   Develop   |\n|------------------|----------|-------------|\n| Github Actions | [![Build Status](https://github.com/boostorg/graph/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/boostorg/graph/actions) | [![Build Status](https://github.com/boostorg/graph/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/boostorg/graph/actions) |\n|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) |\n\n## Development\n\nClone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)):\n\n    git clone https://github.com/boostorg/boost\n    cd boost\n    git submodule update --init\n\nThe Boost Graph Library is located in `libs/graph/`.\n\nBoost Graph Library is mostly made of headers but also contains some compiled components. Here are the build commands:\n\n    ./bootstrap.sh            \u003c- compile b2\n    ./b2 headers              \u003c- just installs headers\n    ./b2                      \u003c- build compiled components\n\n**Note:** The Boost Graph Library cannot currently be built outside of Boost itself.\n\n### Running tests\nFirst, make sure you are in `libs/graph/test`.\nYou can either run all the 300+ tests listed in `Jamfile.v2` or run a single test:\n\n    ../../../b2                        \u003c- run all tests\n    ../../../b2 cycle_canceling_test   \u003c- single test\n\nYou can also check the [regression tests reports](http://beta.boost.org/development/tests/develop/developer/graph.html).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboostorg%2Fgraph","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboostorg%2Fgraph","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboostorg%2Fgraph/lists"}