From: Wolfgang Bangerth Date: Tue, 10 Feb 2015 23:23:52 +0000 (-0600) Subject: Deprecate a function that should have been deprecated a long time ago. X-Git-Tag: v8.3.0-rc1~487^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b87bddaca18834d78954006a2a40949c02b15cc;p=dealii.git Deprecate a function that should have been deprecated a long time ago. --- diff --git a/include/deal.II/lac/constraint_matrix.h b/include/deal.II/lac/constraint_matrix.h index 705ef76056..9348b0ddc4 100644 --- a/include/deal.II/lac/constraint_matrix.h +++ b/include/deal.II/lac/constraint_matrix.h @@ -530,9 +530,13 @@ public: * referring to condensed. Therefore, the dimension of * condensed is the dimension of uncondensed minus the * number of constrained degrees of freedom. + * + * @deprecated The functions converting an uncondensed matrix into its + * condensed form are deprecated. Use the functions doing the in-place + * condensation leaving the size of the linear system unchanged. */ void condense (const SparsityPattern &uncondensed, - SparsityPattern &condensed) const; + SparsityPattern &condensed) const DEAL_II_DEPRECATED; /**