From 6ddfa3dd0b1f3ec158e6f16fe7f30643ea2a65de Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 6 Dec 2015 19:33:04 -0500 Subject: [PATCH] Update tests to not use '<>' unnecessarily. --- tests/mpi/distribute_sp_01.cc | 8 ++++---- tests/mpi/distribute_sp_02.cc | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/mpi/distribute_sp_01.cc b/tests/mpi/distribute_sp_01.cc index d2204f4b28..f69a8034aa 100644 --- a/tests/mpi/distribute_sp_01.cc +++ b/tests/mpi/distribute_sp_01.cc @@ -57,10 +57,10 @@ void test_mpi() for (unsigned int i=0; i(csp, - rows_per_cpu, - MPI_COMM_WORLD, - locally_rel); + SparsityTools::distribute_sparsity_pattern(csp, + rows_per_cpu, + MPI_COMM_WORLD, + locally_rel); /* { std::ofstream f((std::string("after")+Utilities::int_to_string(myid)).c_str()); csp.print(f); diff --git a/tests/mpi/distribute_sp_02.cc b/tests/mpi/distribute_sp_02.cc index 407a12d591..9206ccc2ed 100644 --- a/tests/mpi/distribute_sp_02.cc +++ b/tests/mpi/distribute_sp_02.cc @@ -66,10 +66,10 @@ void test_mpi() deallog << "size: " << csp.n_rows() << "x" << csp.n_cols() << std::endl; } - SparsityTools::distribute_sparsity_pattern<>(csp, - locally_owned_dofs_per_cpu, - MPI_COMM_WORLD, - locally_rel); + SparsityTools::distribute_sparsity_pattern(csp, + locally_owned_dofs_per_cpu, + MPI_COMM_WORLD, + locally_rel); /* { std::ofstream f((std::string("after")+Utilities::int_to_string(myid)).c_str()); csp.print(f); @@ -115,10 +115,10 @@ void test_mpi() locally_owned_dofs_per_cpu2[i].add_range((i)*num_local, (i+1)*num_local); - SparsityTools::distribute_sparsity_pattern<>(csp, - locally_owned_dofs_per_cpu2, - MPI_COMM_WORLD, - locally_rel); + SparsityTools::distribute_sparsity_pattern(csp, + locally_owned_dofs_per_cpu2, + MPI_COMM_WORLD, + locally_rel); if (myid==0) { -- 2.39.5