From: bangerth Date: Wed, 20 Feb 2013 23:58:34 +0000 (+0000) Subject: Remove the Tvmult function. In fact, there was no such function X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1a9bc37be395d736fbba144c8206f71469b61d5;p=dealii-svn.git Remove the Tvmult function. In fact, there was no such function anyway: Its declaration and implementation had been commented out all along. We can always re-add if anyone finds a need for it. git-svn-id: https://svn.dealii.org/trunk@28497 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/iterative_inverse.h b/deal.II/include/deal.II/lac/iterative_inverse.h index 4104a547a8..3e1e5af96d 100644 --- a/deal.II/include/deal.II/lac/iterative_inverse.h +++ b/deal.II/include/deal.II/lac/iterative_inverse.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010, 2012 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -96,13 +96,6 @@ public: */ void vmult (VECTOR &dst, const VECTOR &src) const; - /** - * Solve the transposed system - * for right hand side - * src. - */ -// void Tvmult (VECTOR& dst, const VECTOR& src) const; - /** * The solver, which allows * selection of the actual solver @@ -166,14 +159,6 @@ IterativeInverse::vmult (VECTOR &dst, const VECTOR &src) const } -// template -// inline void -// IterativeInverse::Tvmult (VECTOR& dst, const VECTOR& src) const -// { -// TransposeMatrix< -// solver.solve(*matrix, dst, src, *preconditioner); -// } - DEAL_II_NAMESPACE_CLOSE