Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into atdm-nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlettroscoe committed Apr 1, 2020
2 parents 6a02536 + 978ca11 commit bf753cc
Show file tree
Hide file tree
Showing 18 changed files with 357 additions and 507 deletions.
215 changes: 0 additions & 215 deletions packages/anasazi/tpetra/src/TsqrTpetraTest.hpp

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,10 @@ MakeCompositeAMGHierarchy(RCP<Xpetra::Matrix<Scalar, LocalOrdinal, GlobalOrdinal
*fos << "Attempting to setup AMG hierarchy for the composite coarse grid problem" << std::endl;

// Get parameter list for AMG hierarchy
RCP<ParameterList> mueluParams = Teuchos::getParametersFromXmlFile(xmlFileName);
RCP<ParameterList> mueluParams = Teuchos::rcp(new ParameterList());
Teuchos::updateParametersFromXmlFileAndBroadcast(xmlFileName, mueluParams.ptr(),
*compOp->getRowMap()->getComm());


// Get the user data sublist
const std::string userName = "user data";
Expand Down Expand Up @@ -614,7 +617,8 @@ void createRegionHierarchy(const int maxRegPerProc,
*/

// Read MueLu parameter list form xml file
RCP<ParameterList> mueluParams = Teuchos::getParametersFromXmlFile(xmlFileName);
RCP<ParameterList> mueluParams = Teuchos::rcp(new ParameterList());
Teuchos::updateParametersFromXmlFileAndBroadcast(xmlFileName, mueluParams.ptr(), *mapComp->getComm());

// Insert region-specific data into parameter list
const std::string userName = "user data";
Expand Down
Loading

0 comments on commit bf753cc

Please sign in to comment.