We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8beb1e5 + 2905cb5 commit a9f56e9Copy full SHA for a9f56e9
src/numerics/static_condensation_dof_map.C
@@ -215,13 +215,12 @@ void StaticCondensationDofMap::reinit()
215
for (const auto vg : make_range(_dof_map.n_variable_groups()))
216
{
217
const auto & var_group = _dof_map.variable_group(vg);
218
- if (!var_group.active_on_subdomain(sub_id))
219
- continue;
220
-
221
for (const auto v : make_range(var_group.n_variables()))
222
223
const auto var_num = var_group.number(v);
224
dof_data.reduced_space_indices.resize(var_num + 1);
+ if (!var_group.active_on_subdomain(sub_id))
+ continue;
225
elem_uncondensed_dofs.clear();
226
_dof_map.dof_indices(elem,
227
elem_dofs,
0 commit comments