]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
use n_raw_cells instead of n_raw_* if possible
authorheister <heister@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 2 Jan 2013 21:55:26 +0000 (21:55 +0000)
committerheister <heister@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 2 Jan 2013 21:55:26 +0000 (21:55 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_merge_mg_into_dof_handler@27907 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/source/dofs/dof_handler.cc

index f3c0b60b6267ebc33a69a1de26db4e125e737737..8d575a0ceb87993577f58e311bbdaa0acb8bf522 100644 (file)
@@ -263,12 +263,12 @@ namespace internal
             .push_back (new internal::DoFHandler::DoFLevel<1>);
 
             dof_handler.levels.back()->dof_object.dofs
-            .resize (dof_handler.tria->n_raw_lines(i) *
+            .resize (dof_handler.tria->n_raw_cells(i) *
                      dof_handler.selected_fe->dofs_per_line,
                      DoFHandler<1,spacedim>::invalid_dof_index);
 
             dof_handler.levels.back()->cell_dof_indices_cache
-            .resize (dof_handler.tria->n_raw_lines(i) *
+            .resize (dof_handler.tria->n_raw_cells(i) *
                      dof_handler.selected_fe->dofs_per_cell,
                      DoFHandler<1,spacedim>::invalid_dof_index);
           }
@@ -289,12 +289,12 @@ namespace internal
             dof_handler.levels.push_back (new internal::DoFHandler::DoFLevel<2>);
 
             dof_handler.levels.back()->dof_object.dofs
-            .resize (dof_handler.tria->n_raw_quads(i) *
+            .resize (dof_handler.tria->n_raw_cells(i) *
                      dof_handler.selected_fe->dofs_per_quad,
                      DoFHandler<2,spacedim>::invalid_dof_index);
 
             dof_handler.levels.back()->cell_dof_indices_cache
-            .resize (dof_handler.tria->n_raw_quads(i) *
+            .resize (dof_handler.tria->n_raw_cells(i) *
                      dof_handler.selected_fe->dofs_per_cell,
                      DoFHandler<2,spacedim>::invalid_dof_index);
           }
@@ -325,12 +325,12 @@ namespace internal
             dof_handler.levels.push_back (new internal::DoFHandler::DoFLevel<3>);
 
             dof_handler.levels.back()->dof_object.dofs
-            .resize (dof_handler.tria->n_raw_hexs(i) *
+            .resize (dof_handler.tria->n_raw_cells(i) *
                      dof_handler.selected_fe->dofs_per_hex,
                      DoFHandler<3,spacedim>::invalid_dof_index);
 
             dof_handler.levels.back()->cell_dof_indices_cache
-            .resize (dof_handler.tria->n_raw_hexs(i) *
+            .resize (dof_handler.tria->n_raw_cells(i) *
                      dof_handler.selected_fe->dofs_per_cell,
                      DoFHandler<3,spacedim>::invalid_dof_index);
           }
@@ -1477,7 +1477,7 @@ DoFHandler<dim,spacedim>::max_couplings_between_boundary_dofs () const
       // this assumption is not
       // justified and needs to be
       // fixed some time. fortunately,
-      // ommitting it for now does no
+      // omitting it for now does no
       // harm since the matrix will cry
       // foul if its requirements are
       // not satisfied

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.