From: Daniel Arndt Date: Sat, 3 Aug 2024 20:17:30 +0000 (-0400) Subject: Give make_tpetra_map a default argument X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b56579665e4ab231679949b6149f019175256e2;p=dealii.git Give make_tpetra_map a default argument --- diff --git a/include/deal.II/base/index_set.h b/include/deal.II/base/index_set.h index d444b11356..1ed786270c 100644 --- a/include/deal.II/base/index_set.h +++ b/include/deal.II/base/index_set.h @@ -18,10 +18,13 @@ #include #include +#include #include #include #include +#include + #include #include @@ -609,12 +612,16 @@ public: const bool overlapping = false) const; # ifdef DEAL_II_TRILINOS_WITH_TPETRA - template + template < + typename NodeType = + LinearAlgebra::TpetraWrappers::TpetraTypes::NodeType> Tpetra::Map make_tpetra_map(const MPI_Comm communicator = MPI_COMM_WORLD, const bool overlapping = false) const; - template + template < + typename NodeType = + LinearAlgebra::TpetraWrappers::TpetraTypes::NodeType> Teuchos::RCP> make_tpetra_map_rcp(const MPI_Comm communicator = MPI_COMM_WORLD, const bool overlapping = false) const;