Extensions to the Racket Generic Graph package.
(subgraph G vertices): return a subgraph just containing the given vertices.(get-nearest G v [#:max-dist 2]): get the neighbourhood of vertices within radiusmax-dist.(all-paths G src dest): return all paths connectingsrcanddest.(all-path-fn f G src dest): apply a function (e.g. length) across all paths fromsrctodest.(find-maximal-cliques G): find all maximal cliques ofGusing the Bron-Kerbosch algorithm.(create-gexf G): turnGinto simple GEXF for import into, for example, Gephi.(write-gexf G fname): ExportGas GEXF to a file.