Registry / utility / graaf
library1.1.1vcpkgunverified

A general-purpose lightweight C++ graph library

vcpkg install graaf
INSTALL
IMPORT
SIG · GRAAF
G
graaf
utilitycppv1.1.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

graaf/graaf.h
#include <graaf/graaf.h>

Create a simple graph with two vertices and an edge

#include <graaf/graaf.h> #include <iostream> int main() { graaf::Graph<int, int> g; auto v1 = g.add_vertex(1); auto v2 = g.add_vertex(2); g.add_edge(v1, v2, 42); std::cout << "Graph has " << g.num_vertices() << " vertices" << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.1.1latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources

No resource links recorded.

graaf — pip install graaf · libregistry