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.
nodesoup/nodesoup.hpp
✓ #include <nodesoup/nodesoup.hpp>
Compute force-directed layout for a small graph
#include <nodesoup/nodesoup.hpp>
#include <iostream>
int main() {
// Example: create a simple graph and layout
nodesoup::Graph g;
g.add_edge(0, 1);
g.add_edge(1, 2);
auto positions = nodesoup::fruchterman_reingold(g, 800, 600);
std::cout << "Layout computed for " << positions.size() << " nodes" << std::endl;
return 0;
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
2023-06-12latest on vcpkg
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.