From 7657ad5cdd28b7b70bbc4d0f94d75541ec629d40 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 14 Jan 1999 15:30:58 +0000 Subject: [PATCH] Make this thing compile; I forgot to work around access restrictions. git-svn-id: https://svn.dealii.org/trunk@731 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_system.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/deal.II/source/fe/fe_system.cc b/deal.II/deal.II/source/fe/fe_system.cc index 440eb66eb6..c845fba634 100644 --- a/deal.II/deal.II/source/fe/fe_system.cc +++ b/deal.II/deal.II/source/fe/fe_system.cc @@ -30,15 +30,15 @@ void FESystem::initialize_matrices () { { restriction[child] (i*n_sub_elements + n, j*n_sub_elements + n) - = base_element->restriction[child](i,j); + = base_element->restrict(child)(i,j); prolongation[child] (i*n_sub_elements + n, j*n_sub_elements + n) - = base_element->prolongation[child](i,j); + = base_element->prolongate(child)(i,j); }; interface_constraints (i*n_sub_elements + n, j*n_sub_elements + n) - = base_element->interface_constraints(i,j); + = base_element->constraints()(i,j); }; }; -- 2.39.5