Skip to content

Commit

Permalink
Merge Pull Request #6007 from trilinos/Trilinos/master_merge_20191001…
Browse files Browse the repository at this point in the history
…_000620

Automatically Merged using Trilinos Master Merge AutoTester
PR Title: Trilinos Master Merge PR Generator: Auto PR created to promote from master_merge_20191001_000620 branch to master
PR Author: trilinos-autotester
  • Loading branch information
trilinos-autotester authored Oct 1, 2019
2 parents ad4826a + 3f56e2d commit 759d4c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/build_docs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
print "\n";
if(!$skipBuild) {
print "\nGenerating package documentation ...\n";
find (\&buildDocs, $trilinosDir);
find ({wanted=>\&buildDocs, preprocess => sub {sort {$a cmp $b} @_}}, $trilinosDir);
if($build_dir) {
find (\&copyXML, $trilinosDir);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/muelu/src/Smoothers/MueLu_Amesos2Smoother_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ namespace MueLu {
ArrayView<GO> elements = elements_RCP();
for (size_t k = 0; k<M; k++)
elements[k] = Teuchos::as<GO>(k);
colMap = MapFactory::Build(rowMap->lib(),M,elements,Teuchos::ScalarTraits<GO>::zero(),rowMap->getComm());
colMap = MapFactory::Build(rowMap->lib(),M*rowMap->getComm()->getSize(),elements,Teuchos::ScalarTraits<GO>::zero(),rowMap->getComm());
importer = ImportFactory::Build(rowMap,colMap);
NullspaceImp = MultiVectorFactory::Build(colMap, Nullspace->getNumVectors());
NullspaceImp->doImport(*Nullspace,*importer,Xpetra::INSERT);
Expand Down

0 comments on commit 759d4c9

Please sign in to comment.