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 COCG method for complex symmetric linear systems #289

Open
wants to merge 16 commits into
base: master
Choose a base branch
from

Commits on Jan 25, 2021

  1. Add conjugate orthogonal conjugate gradient (COCG) method for complex…

    … symmetric linear systems
    wsshin committed Jan 25, 2021
    Configuration menu
    Copy the full SHA
    c5b440e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    91208cd View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2021

  1. Add more unit tests for COCG

    wsshin committed Jan 26, 2021
    Configuration menu
    Copy the full SHA
    3337884 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2021

  1. Move definition of unconjugated dot product to common.jl

    The usage of the unconjugated dot product is not limited to implementing
    COCG from CG, so it is more appropriate to move its definition outside
    cg.jl.  For example, the unconjugated dot product can be used in
    implementing COCR from CR.
    wsshin committed Feb 22, 2021
    Configuration menu
    Copy the full SHA
    f7df543 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2021

  1. Configuration menu
    Copy the full SHA
    d5b31f4 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2021

  1. Rename DotType AbstractDot

    wsshin committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    97315be View commit details
    Browse the repository at this point in the history
  2. Rename dot_type dotproduct

    wsshin committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    593e88c View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2021

  1. Configuration menu
    Copy the full SHA
    835a894 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2021

  1. Utilize ≈ in test/cg.jl

    wsshin committed Mar 18, 2021
    Configuration menu
    Copy the full SHA
    9c47e7f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3cd7969 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2021

  1. Update docstring for cocg!()

    wsshin committed Mar 21, 2021
    Configuration menu
    Copy the full SHA
    d16fecb View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2021

  1. Fix typo in comment

    wsshin committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    04c3c16 View commit details
    Browse the repository at this point in the history
  2. Remove unnecessary comments

    wsshin committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    4800129 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2022

  1. Configuration menu
    Copy the full SHA
    9a7fb26 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2022

  1. Configuration menu
    Copy the full SHA
    f3710c3 View commit details
    Browse the repository at this point in the history
  2. Add COCG in documentation

    wsshin committed Jan 5, 2022
    Configuration menu
    Copy the full SHA
    b457247 View commit details
    Browse the repository at this point in the history