From: wolf Date: Thu, 9 Dec 1999 08:11:37 +0000 (+0000) Subject: Adapt to Guido's changes. (Why do I have to make this myself?) X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6956cb1e84e550eea435f0a233af50a66aeeba8;p=dealii-svn.git Adapt to Guido's changes. (Why do I have to make this myself?) git-svn-id: https://svn.dealii.org/trunk@2021 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/Attic/examples/dof/dof_test.cc b/deal.II/deal.II/Attic/examples/dof/dof_test.cc index cfd46b993a..011b95ca10 100644 --- a/deal.II/deal.II/Attic/examples/dof/dof_test.cc +++ b/deal.II/deal.II/Attic/examples/dof/dof_test.cc @@ -4,6 +4,7 @@ #include +#include #include #include #include @@ -363,7 +364,7 @@ void TestCases::run (ParameterHandler &prm) { dof->max_couplings_between_dofs()); - dof->make_sparsity_pattern (sparsity); + DoFTools::make_sparsity_pattern (*dof, sparsity); int unconstrained_bandwidth = sparsity.bandwidth(); cout << " Writing sparsity pattern..." << endl; diff --git a/tests/big-tests/dof/dof_test.cc b/tests/big-tests/dof/dof_test.cc index cfd46b993a..011b95ca10 100644 --- a/tests/big-tests/dof/dof_test.cc +++ b/tests/big-tests/dof/dof_test.cc @@ -4,6 +4,7 @@ #include +#include #include #include #include @@ -363,7 +364,7 @@ void TestCases::run (ParameterHandler &prm) { dof->max_couplings_between_dofs()); - dof->make_sparsity_pattern (sparsity); + DoFTools::make_sparsity_pattern (*dof, sparsity); int unconstrained_bandwidth = sparsity.bandwidth(); cout << " Writing sparsity pattern..." << endl;