FullMatrix<double> cell_matrix(dofs_per_cell, dofs_per_cell);
Vector<double> cell_rhs(dofs_per_cell);
- std::vector<unsigned int> local_dof_indices(dofs_per_cell);
+ std::vector<types::global_dof_indices> local_dof_indices(dofs_per_cell);
typename DoFHandler<dim>::active_cell_iterator cell =
dof_handler.begin_active(), endc = dof_handler.end();
Vector<double> cell_rhs(dofs_per_cell);
- std::vector<unsigned int> local_dof_indices(dofs_per_cell);
+ std::vector<types::global_dof_indices> local_dof_indices(dofs_per_cell);
const FEValuesExtractors::Vector displacement(0);
for (unsigned i = 0; i < dim; i++)
ones[i] = 1.0;
- std::vector<unsigned int> local_dof_indices(dofs_per_cell);
+ std::vector<types::global_dof_indices> local_dof_indices(dofs_per_cell);
const FEValuesExtractors::Vector displacement(0);