From: kanschat Date: Fri, 17 Jun 2011 21:40:48 +0000 (+0000) Subject: change order of initialization X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=930064834dd3648796b66dc37684f4583c65c281;p=dealii-svn.git change order of initialization git-svn-id: https://svn.dealii.org/trunk@23837 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/lac/sparse_matrices.cc b/tests/lac/sparse_matrices.cc index d4ec9bc452..b12541bc74 100644 --- a/tests/lac/sparse_matrices.cc +++ b/tests/lac/sparse_matrices.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2007, 2008 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2007, 2008, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -85,8 +85,8 @@ check_vmult_quadratic(std::vector& residuals, PreconditionBlockSOR block_sor; block_sor.initialize(A, data); PreconditionBlockSOR block_psor; - block_psor.initialize(A, data); block_psor.set_permutation(perm, iperm); + block_psor.initialize(A, data); f = 1.;