Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
streeve committed Aug 24, 2023
1 parent 7fc5476 commit 3f20e2b
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <vector>

//---------------------------------------------------------------------------//
// HYPRE Structured Solver Example
// HYPRE Semi-Structured Solver Example
//---------------------------------------------------------------------------//
void hypreSemiStructuredSolverExample()
{
Expand Down Expand Up @@ -177,19 +177,19 @@ int main( int argc, char* argv[] )
Kokkos::ScopeGuard scope_guard( argc, argv );

/*
The hypre solver capabilities used by Cabana must be initialized and
finalized. HYPRE_Init() initializes hypre. A call to HYPRE_Init()
must be included before any hypre calls occur
The hypre solver capabilities used by Cabana must be initialized and
finalized. HYPRE_Init() initializes hypre. A call to HYPRE_Init() must
be included before any hypre calls occur
*/
HYPRE_Init();

hypreSemiStructuredSolverExample();

/*
The hypre solver capabilities used by Cabana must be initialized and
finalized. HYPRE_Finalize() finalizes hypre. A call to
HYPRE_Finalize() should not occur before all calls to hypre
capabilites are finished.
The hypre solver capabilities used by Cabana must be initialized and
finalized. HYPRE_Finalize() finalizes hypre. A call to
HYPRE_Finalize() should not occur before all calls to hypre
capabilites are finished.
*/
HYPRE_Finalize();
}
Expand Down

0 comments on commit 3f20e2b

Please sign in to comment.