Skip to content

Commit

Permalink
Merge Pull Request #12909 from MalachiTimothyPhillips/Trilinos/malach…
Browse files Browse the repository at this point in the history
…i/minor-multiphys-tweaks

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: b'MueLu: Minor Tweaks to MultiPhys'
PR Author: MalachiTimothyPhillips
  • Loading branch information
trilinos-autotester authored May 31, 2024
2 parents de51c62 + b41d41c commit d8cc006
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/muelu/src/Operators/MueLu_MultiPhys_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ void MultiPhys<Scalar, LocalOrdinal, GlobalOrdinal, Node>::compute(bool reuse) {
// Generate the (iii,iii) Hierarchy

for (int iii = 0; iii < nBlks_; iii++) {
arrayOfParamLists_[iii]->sublist("user data").set("Coordinates", arrayOfCoords_[iii]);
if (arrayOfCoords_ != Teuchos::null) {
arrayOfParamLists_[iii]->sublist("user data").set("Coordinates", arrayOfCoords_[iii]);
}

bool wantToRepartition = false;
if (paramListMultiphysics_->isParameter("repartition: enable"))
Expand Down Expand Up @@ -312,6 +314,8 @@ void MultiPhys<Scalar, LocalOrdinal, GlobalOrdinal, Node>::
}
oss << std::endl;

out << oss.str();

for (int i = 0; i < nBlks_; i++) {
arrayOfHierarchies_[i]->describe(out, GetVerbLevel());
}
Expand Down

0 comments on commit d8cc006

Please sign in to comment.