From: David Wells Date: Fri, 16 Jun 2017 14:17:13 +0000 (-0400) Subject: Fix the Trilinos quick test. X-Git-Tag: v9.0.0-rc1~1498^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4521%2Fhead;p=dealii.git Fix the Trilinos quick test. It looks like we did not update this constructor when we removed the serial vector (the parallel vector's constructor needs an IndexSet, not an integer). --- diff --git a/tests/quick_tests/step-trilinos.cc b/tests/quick_tests/step-trilinos.cc index aba3202584..7c444e8b91 100644 --- a/tests/quick_tests/step-trilinos.cc +++ b/tests/quick_tests/step-trilinos.cc @@ -85,8 +85,8 @@ void LaplaceProblem::setup_system () DoFTools::make_sparsity_pattern (dof_handler, dsp, constraints, false); A.reinit (dsp); - b.reinit (dof_handler.n_dofs()); - x.reinit (dof_handler.n_dofs()); + b.reinit (complete_index_set(dof_handler.n_dofs())); + x.reinit (complete_index_set(dof_handler.n_dofs())); // some output output_table.add_value ("cells", triangulation.n_active_cells());