Skip to content

Commit a1a82cc

Browse files
authored
Update README.md
1 parent 07b586a commit a1a82cc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Algebraic Multigrid (AMG)
22

3-
[![Build Status](https://travis-ci.org/ranjanan/AMG.jl.svg?branch=master)](https://travis-ci.org/ranjanan/AMG.jl)
4-
[![Coverage Status](https://coveralls.io/repos/ranjanan/AMG.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/ranjanan/AMG.jl?branch=master)
5-
[![codecov.io](http://codecov.io/github/ranjanan/AMG.jl/coverage.svg?branch=master)](http://codecov.io/github/ranjanan/AMG.jl?branch=master)
3+
[![Build Status](https://travis-ci.org/ranjanan/AlgebraicMultigrid.jl.svg?branch=master)](https://travis-ci.org/ranjanan/AlgebraicMultigrid.jl)
4+
[![Coverage Status](https://coveralls.io/repos/ranjanan/AlgebraicMultigrid.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/ranjanan/AlgebraicMultigrid.jl?branch=master)
5+
[![codecov.io](http://codecov.io/github/ranjanan/AlgebraicMultigrid.jl/coverage.svg?branch=master)](http://codecov.io/github/ranjanan/AlgebraicMultigrid.jl?branch=master)
66

77
This package lets you solve sparse linear systems using Algebraic Multigrid (AMG). This works especially well for symmetric positive definite matrices.
88

99
## Usage
1010

1111
```julia
12-
using AMG
12+
using AlgebraicMultigrid
1313

1414
A = poisson(1000) # Creates a sample symmetric positive definite sparse matrix
1515
ml = ruge_stuben(A) # Construct a Ruge-Stuben solver
@@ -56,13 +56,14 @@ Strength of Connection:
5656

5757
Smoothers:
5858
* Gauss Seidel (Symmetric, Forward, Backward)
59+
* Damped Jacobi
5960

6061
Cycling:
6162
* V cycle
6263

6364
In the future, this package will support:
6465
1. Other splitting methods (like CLJP)
65-
2. SOR, Jacobi smoothers
66+
2. SOR smoother
6667
3. W, F, AMLI cycles
6768

6869
#### Acknowledgements

0 commit comments

Comments
 (0)