Skip to content

Commit

Permalink
Fix typo in hypre interface (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf authored Oct 11, 2023
1 parent 163c568 commit 49cc3f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .codespell-ignore-words
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ degress
vell
nd
fo
ue
ue
structed
2 changes: 1 addition & 1 deletion amr-wind/core/MLMGOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void MLMGOptions::operator()(amrex::MLMG& mlmg)
else if (hypre_interface == "semi_structured")
mlmg.setHypreInterface(amrex::Hypre::Interface::semi_structed);
else if (hypre_interface == "structured")
mlmg.setHypreInterface(amrex::Hypre::Interface::structured);
mlmg.setHypreInterface(amrex::Hypre::Interface::structed);
else
amrex::Abort(
"Invalid hypre interface. Valid options: ij semi_structured "
Expand Down

0 comments on commit 49cc3f2

Please sign in to comment.