From 5b189d6298414eb50dd189c5495702d99afe25bb Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 16 Jun 2017 10:17:13 -0400 Subject: [PATCH] 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). --- tests/quick_tests/step-trilinos.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); -- 2.39.5