From 2c933f42a261e5d32ff135734d8099b6fdd4ea15 Mon Sep 17 00:00:00 2001 From: guido Date: Fri, 26 Feb 1999 13:21:02 +0000 Subject: [PATCH] dVectors removed git-svn-id: https://svn.dealii.org/trunk@914 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/dof_test.cc | 6 +++--- tests/deal.II/fe_tables.cc | 3 +++ tests/deal.II/gradients.cc | 4 ++-- tests/deal.II/second_derivatives.cc | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/tests/deal.II/dof_test.cc b/tests/deal.II/dof_test.cc index abee91b85f..626dab3bf9 100644 --- a/tests/deal.II/dof_test.cc +++ b/tests/deal.II/dof_test.cc @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include @@ -289,8 +289,8 @@ void TestCases::run (const unsigned int test_case) { cout << " Renumbering degrees of freedom..." << endl; dof->renumber_dofs (Cuthill_McKee, false); - dSMatrixStruct sparsity (dof->n_dofs(), - dof->max_couplings_between_dofs()); + SparseMatrixStruct sparsity (dof->n_dofs(), + dof->max_couplings_between_dofs()); dof->make_sparsity_pattern (sparsity); diff --git a/tests/deal.II/fe_tables.cc b/tests/deal.II/fe_tables.cc index 60efe77fbf..8309e2c82e 100644 --- a/tests/deal.II/fe_tables.cc +++ b/tests/deal.II/fe_tables.cc @@ -1,5 +1,8 @@ // $Id$ +// deal_II_libraries.g=-ldeal_II_2d.g +// deal_II_libraries=-ldeal_II_2d + #include #include #include diff --git a/tests/deal.II/gradients.cc b/tests/deal.II/gradients.cc index b71fa6902b..867793bc5d 100644 --- a/tests/deal.II/gradients.cc +++ b/tests/deal.II/gradients.cc @@ -20,7 +20,7 @@ #include #include #include -#include +#include @@ -40,7 +40,7 @@ int main () { fevalues.reinit (dof.begin_active(),b); - dVector val(4); + Vector val(4); cout << "------------------------------------------------------" << endl << "Testing transformation of gradients of shape function:" << endl; diff --git a/tests/deal.II/second_derivatives.cc b/tests/deal.II/second_derivatives.cc index 10d024bc07..c968838e2c 100644 --- a/tests/deal.II/second_derivatives.cc +++ b/tests/deal.II/second_derivatives.cc @@ -12,7 +12,7 @@ #include #include #include -#include +#include @@ -30,7 +30,7 @@ int main () { FEValues<2> fevalues(fe,q,update_second_derivatives); - dVector val(4); + Vector val(4); cout << "------------------------------------------------------------" << endl << "Testing transformation of 2nd derivatives of shape function:" << endl; -- 2.39.5