From: Bruno Turcksin Date: Fri, 31 May 2013 23:06:26 +0000 (+0000) Subject: Fix a test. X-Git-Tag: v8.0.0~316^2~13 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=105272079bbb2d171eb14fd889afa604224f0cdb;p=dealii.git Fix a test. git-svn-id: https://svn.dealii.org/branches/branch_bigger_global_dof_indices_4@29703 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/development/cmake.html b/deal.II/doc/development/cmake.html index e9e6643ea9..0b1c072f98 100644 --- a/deal.II/doc/development/cmake.html +++ b/deal.II/doc/development/cmake.html @@ -244,6 +244,7 @@ DEAL_II_WITH_TRILINOS DEAL_II_WITH_UMFPACK DEAL_II_WITH_ZLIB + DEAL_II_WITH_64BIT_INDICES They all have standard meaning with the exception of two: diff --git a/tests/mpi/multigrid_uniform.cc b/tests/mpi/multigrid_uniform.cc index f1a75efe94..3227445589 100644 --- a/tests/mpi/multigrid_uniform.cc +++ b/tests/mpi/multigrid_uniform.cc @@ -248,7 +248,7 @@ namespace Step50 FullMatrix cell_matrix (dofs_per_cell, dofs_per_cell); Vector cell_rhs (dofs_per_cell); - std::vector local_dof_indices (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points); @@ -305,7 +305,7 @@ namespace Step50 FullMatrix cell_matrix (dofs_per_cell, dofs_per_cell); - std::vector local_dof_indices (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points);