Skip to content

Commit

Permalink
Remove jacobi preconditioner from semi-structured example
Browse files Browse the repository at this point in the history
  • Loading branch information
lebuller committed Aug 9, 2023
1 parent f34766a commit 127e492
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void hypreSemiStructuredSolverExample()
You can try one of the following solver type and preconditioner type
solver type : PCG, GMRES, BiCGSTAB,
preconditioner type : none, Diagonal, Jacobi
preconditioner type : none, Diagonal
*/

std::cout << "Cajita HYPRE Semi-Structured Solver Example\n" << std::endl;
Expand Down Expand Up @@ -142,7 +142,7 @@ void hypreSemiStructuredSolverExample()
/*
Create a preconditioner - in this case we use Diagonal
*/
std::string precond_type = "Jacobi";
std::string precond_type = "Diagonal";
auto preconditioner =
Cajita::createHypreSemiStructuredSolver<double, MemorySpace>(
precond_type, *vector_layout, true, 3 );
Expand Down

0 comments on commit 127e492

Please sign in to comment.