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

Commits on Mar 14, 2023

  1. Additional options for Chebyshev-accelerated Jacobi smoothing.

    Variant 2: Standard, 1st Kind Chebyshev smoothing with $D^{-1}A$.
    No restriction on the Chebyshev order.
    
    Variant 3: 4th Kind Chebyshev smoother with $D^{-1}A$.
    No restriction on the Chebyshev order.
    
    Variant 4: Optimized 4th Kind Chebyshev smoother with $D^{-1}A$.
    Chebyshev order must be in [1,16] due to needing to compute the
    $\beta_k$ coefficients.
    
    Variants 3-4 are from https://arxiv.org/pdf/2202.08830.pdf.
    
    These correspond to relaxation type 16.
    
    In addition, relaxation type 19 has been implemented as a "no-op"
    smoother. This can be used in the case a user wishes to omit the post
    smoothing step, for example.
    MalachiTimothyPhillips committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    a082917 View commit details
    Browse the repository at this point in the history