From: guido Date: Tue, 24 Sep 2002 23:17:00 +0000 (+0000) Subject: local variables changed to OutVector type X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a75431182a96a0d8bc5a7b456d8026aa950a5ad;p=dealii-svn.git local variables changed to OutVector type git-svn-id: https://svn.dealii.org/trunk@6508 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_tools.cc b/deal.II/deal.II/source/fe/fe_tools.cc index c378ab571d..e69fe21598 100644 --- a/deal.II/deal.II/source/fe/fe_tools.cc +++ b/deal.II/deal.II/source/fe/fe_tools.cc @@ -162,8 +162,8 @@ void FETools::interpolate(const DoFHandler &dof1, const unsigned int dofs_per_cell1=dof1.get_fe().dofs_per_cell; const unsigned int dofs_per_cell2=dof2.get_fe().dofs_per_cell; - Vector u1_local(dofs_per_cell1); - Vector u2_local(dofs_per_cell2); + Vector u1_local(dofs_per_cell1); + Vector u2_local(dofs_per_cell2); FullMatrix interpolation_matrix(dofs_per_cell2, dofs_per_cell1); @@ -235,8 +235,8 @@ void FETools::back_interpolate(const DoFHandler &dof1, const unsigned int dofs_per_cell1=dof1.get_fe().dofs_per_cell; - Vector u1_local(dofs_per_cell1); - Vector u1_int_local(dofs_per_cell1); + Vector u1_local(dofs_per_cell1); + Vector u1_int_local(dofs_per_cell1); typename DoFHandler::active_cell_iterator cell = dof1.begin_active(), endc = dof1.end(); @@ -290,7 +290,7 @@ void FETools::back_interpolate(const DoFHandler &dof1, // interpolate back to dof1 // taking into account // constraints1 - Vector u2(dof2.n_dofs()); + Vector u2(dof2.n_dofs()); interpolate(dof1, u1, dof2, constraints2, u2); interpolate(dof2, u2, dof1, constraints1, u1_interpolated); } @@ -322,8 +322,8 @@ void FETools::interpolation_difference(const DoFHandler &dof1, const unsigned int dofs_per_cell=dof1.get_fe().dofs_per_cell; - Vector u1_local(dofs_per_cell); - Vector u1_diff_local(dofs_per_cell); + Vector u1_local(dofs_per_cell); + Vector u1_diff_local(dofs_per_cell); FullMatrix difference_matrix(dofs_per_cell, dofs_per_cell); FETools::get_interpolation_difference_matrix(dof1.get_fe(), fe2, @@ -403,7 +403,7 @@ void FETools::extrapolate(const DoFHandler &dof1, const unsigned int dofs_per_cell = dof2.get_fe().dofs_per_cell; const Triangulation &tria=dof1.get_tria(); - Vector dof_values(dofs_per_cell); + Vector dof_values(dofs_per_cell); for (unsigned int level=0; level