Skip to content

Commit

Permalink
MueLu: fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jhux2 committed Dec 22, 2020
1 parent b56100d commit 9db904d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/muelu/src/Utils/MueLu_UtilitiesBase_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ namespace MueLu {
RCP<const Map> rowMap = rcpA->getRowMap();
diag = Xpetra::VectorFactory<Scalar,LocalOrdinal,GlobalOrdinal,Node>::Build(rowMap,true);
ArrayRCP<Scalar> diagVals = diag->getDataNonConst(0);
Teuchos::Array<Scalar> regSum(diag->getLength());
Teuchos::Array<Scalar> regSum(diag->getLocalLength());
Teuchos::ArrayView<const LocalOrdinal> cols;
Teuchos::ArrayView<const Scalar> vals;

Expand Down

0 comments on commit 9db904d

Please sign in to comment.