Skip to content

Algorithms inspired by graph Laplacians: linear equation solvers, sparsification, clustering, optimization, etc.

License

Notifications You must be signed in to change notification settings

dejangvozdenac/Laplacians.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laplacians.jl

Build Status codecov

Laplacians is a package containing graph algorithms, with an emphasis on tasks related to spectral and algebraic graph theory. It contains (and will contain more) code for solving systems of linear equations in graph Laplacians, low stretch spanning trees, sparsifiation, clustering, local clustering, and optimization on graphs.

All graphs are represented by sparse adjacency matrices. This is both for speed, and because our main concerns are algebraic tasks. It does not handle dynamic graphs. It would be very slow to implement dynamic graphs this way.

The documentation may be found by clicking on one of the "docs" links above.

This includes instructions for installing Julia, and some tips for how to start using it. It also includes guidelines for Dan Spielman's collaborators.

For some examples of some of the things you can do with Laplacians, look at

If you want to solve Laplacian equations, we recommend the KMPLapSolver. For SDD equations, we recommend the KMPSDDSolver.

The algorithms provide by Laplacians.jl include:

  • akpw, a heuristic for computing low stretch spanning trees written by Daniel Spielman, inspired by the algorithm from the paper "A graph-theoretic game and its application to the k-server problem" by Alon, Karp, Peleg, and West, SIAM Journal on Computing, 1995.
  • KMPLapSolver and KMPSDDSolver: linear equation solvers based on the paper "Approaching optimality for solving SDD systems" by Koutis, Miller, and Peng, SIAM Journal on Computing, 2014.
  • samplingSDDSolver and samplingLapSolver, based on the paper "Approximate Gaussian Elimination for Laplacians: Fast, Sparse, and Simple" by Rasmus Kyng and Sushant Sachdeva, FOCS 2016.
  • chimera and wtedChimera graph generators for testing graph algorithms, by Daniel Spielman.
  • Local Graph Clustering Heuristics, implemented by Serban Stan, including prn a version of PageRank Nibble based on "Using PageRank to Locally Partition a Graph", Internet Mathematics and LocalImprove based on "Flow-Based Algorithms for Local Graph Clustering" by Zeyuan Allen-Zhu and Lorenzo Orecchia, SODA 2014.

Current Development Version

To get the current version of the master branch, run Pkg.checkout("Laplacians")

Version 0.1.1, December 26, 2016

This is the current version. It is what you retrieve when you run Pkg.add("Laplacians").

Changelist:

  • All of the linear equation solvers now have the same interface, and the Laplacian solvers work for disconnected graphs.
  • Some support for calling solvers from Matlab has been added.
  • Documentation is now through Documenter.jl.

Version 0.0.3 / 0.1.0, November 20, 2016

Versions 0.0.3 and 0.1.0 are the same. These versions works with Julia 0.5.

Warning: the behavior of chimera and wtedChimera differs between Julia 0.4 and Julia 0.5 because randperm acts differently in these.

Version 0.0.2, November 19, 2016

This is the version that works with Julia 0.4. It was captured right before the upgrade to Julia 0.5

About

Algorithms inspired by graph Laplacians: linear equation solvers, sparsification, clustering, optimization, etc.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 48.8%
  • Jupyter Notebook 40.1%
  • Julia 11.0%
  • MATLAB 0.1%