From: David Wells Date: Mon, 7 Dec 2015 00:33:04 +0000 (-0500) Subject: Update tests to not use '<>' unnecessarily. X-Git-Tag: v8.4.0-rc2~174^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ddfa3dd0b1f3ec158e6f16fe7f30643ea2a65de;p=dealii.git Update tests to not use '<>' unnecessarily. --- 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) {