-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support `precs` API of LinearSolve
- Loading branch information
Showing
11 changed files
with
119 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changelog | ||
|
||
## v1.0, 2024-08-XX | ||
- Support `precs` API of LinearSolve | ||
- Not really breaking, but transition to genuine semantig versioning | ||
|
||
|
||
## v0.4, 2024-07-15 | ||
- Fix SparseMatrixCSR from CSC for nonsymmetric matrices | ||
- Add Aqua, ExplicitImports tests, ci on apple silicon | ||
- Require julia 1.9 | ||
|
||
## v0.3, 2024-01-15 | ||
- LinearSolve extension, solver support via a LinearSolveFunction | ||
- Change default for RLXPrecon to ILU0 | ||
|
||
## v0.2, 2024-01-09 | ||
- Finalization of API, exception handling | ||
|
||
## v0.1, 2024-01-08 | ||
- Initial registered version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[deps] | ||
AMGCLWrap = "4f76b812-4ba5-496d-b042-d70715554288" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
````@eval | ||
using Markdown | ||
Markdown.parse(read("../../CHANGELOG.md",String)) | ||
```` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
```@docs | ||
AMGPrecon | ||
AMGPreconditioner | ||
RLXPrecon | ||
RLXPreconditioner | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters