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.
1 parent d26d8d6 commit 1331728Copy full SHA for 1331728
src/elasticity_problem.cpp
@@ -50,9 +50,9 @@ MatNullSpace build_near_nullspace(const fem::FunctionSpace<double>& V)
50
}
51
52
// Rotations
53
- auto x3 = basis[3].array();
54
- auto x4 = basis[4].array();
55
- auto x5 = basis[5].array();
+ std::vector<T>& x3 = basis[3].array();
+ std::vector<T>& x4 = basis[4].array();
+ std::vector<T>& x5 = basis[5].array();
56
57
const std::vector<double> x = V.tabulate_dof_coordinates(false);
58
const std::int32_t* dofs = V.dofmap()->map().data_handle();
0 commit comments