Skip to content

Commit

Permalink
Merge pull request #767 from tjhei/fix_fpe
Browse files Browse the repository at this point in the history
fix FPE in vector construction
  • Loading branch information
bangerth committed Feb 23, 2016
2 parents e768257 + 5c59d8f commit 89d7e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/simulator/assembly.cc
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ namespace aspect
GeometryInfo<dim>::max_children_per_face * GeometryInfo<dim>::faces_per_cell
:
0),
std::vector<types::global_dof_index>(finite_element.dofs_per_cell,Utilities::signaling_nan<double>()))
std::vector<types::global_dof_index>(finite_element.dofs_per_cell))
{}


Expand Down

0 comments on commit 89d7e11

Please sign in to comment.