From: Wolfgang Bangerth Date: Sat, 9 Feb 2013 22:09:14 +0000 (+0000) Subject: Adjust to the changes in SparsityPattern. X-Git-Tag: v8.0.0~1380 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee5e9be15c99a2cfd686a5d778d616dd0c2f2c1c;p=dealii.git Adjust to the changes in SparsityPattern. git-svn-id: https://svn.dealii.org/trunk@28299 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/lac/sparsity_pattern_common.h b/tests/lac/sparsity_pattern_common.h index 2820728c6f..f5905a644e 100644 --- a/tests/lac/sparsity_pattern_common.h +++ b/tests/lac/sparsity_pattern_common.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2008, 2009 by the deal.II authors +// Copyright (C) 2008, 2009, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -338,7 +338,7 @@ void do_copy_from (const FullMatrix &sparsity, SP &sp4) { - sp4.copy_from (sparsity, false); + sp4.copy_from (sparsity); } @@ -346,7 +346,7 @@ void do_copy_from (const FullMatrix &sparsity, ChunkSparsityPattern &sp4) { - sp4.copy_from (sparsity, chunk_size, false); + sp4.copy_from (sparsity, chunk_size); }