.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);
}
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);
}
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);
}
// 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