Skip to content

alphajuliet/graph-ext

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

graph-ext

Extensions to the Racket Generic Graph package.

Functions

  • (subgraph G vertices): return a subgraph just containing the given vertices.
  • (get-nearest G v [#:max-dist 2]): get the neighbourhood of vertices within radius max-dist.
  • (all-paths G src dest): return all paths connecting src and dest.
  • (all-path-fn f G src dest): apply a function (e.g. length) across all paths from src to dest.
  • (find-maximal-cliques G): find all maximal cliques of G using the Bron-Kerbosch algorithm.
  • (create-gexf G): turn G into simple GEXF for import into, for example, Gephi.
  • (write-gexf G fname): Export G as GEXF to a file.

About

Extensions to the Racket generic graph library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages