Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add smoothing based on Chebyshev polynomials of the fourth kind #856

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/parcsr_ls/HYPRE_parcsr_ls.h
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,11 @@ HYPRE_Int HYPRE_BoomerAMGSetChebyScale (HYPRE_Solver solver,
/**
* (Optional) Defines which polynomial variant should be used.
* The default is 0 (i.e., scaled).
* If variant=1, the polynomial is defined as:
* T(t)* f(t) where f(t) = (1-b/t)
* If variant=2, use standard Chebyshev polynomial with $D^{-1}A$, not $D^{-1/2}AD^{-1/2}$.
* If variant=3, use 4th-kind Chebyshev polynomial from https://arxiv.org/abs/2202.08830.
* If variant=4, use optimized 4th-kind Chebyshev polynomial from https://arxiv.org/abs/2202.08830.
**/
HYPRE_Int HYPRE_BoomerAMGSetChebyVariant (HYPRE_Solver solver,
HYPRE_Int variant);
Expand Down
Loading