Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ MatrixLinearSolver<Matrix,Vector>::MatrixLinearSolver()
"parallelInverseProduct", "Parallelize the computation of the product J*M^{-1}*J^T "
"where M is the matrix of the linear system and J is any "
"matrix with compatible dimensions"))
, invertData()
, l_linearSystem(initLink("linearSystem", "The linear system to solve"))
, invertData()
, d_factorizationInvalidation(initData(&d_factorizationInvalidation, false, "factorizationInvalidation", "Internal data for the detection of cache invalidation of the matrix factorization"))
{
d_factorizationInvalidation.setReadOnly(true);
Expand Down
1 change: 0 additions & 1 deletion Sofa/framework/Core/src/sofa/core/visual/DrawMesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ struct SOFA_CORE_API DrawElementMesh<sofa::geometry::Hexahedron>
p.resize(elementIndices.size() * sofa::geometry::Quad::NumberOfNodes);
}

std::size_t renderedPointId {};
for (auto i : elementIndices)
{
const auto& element = elements[i];
Expand Down
Loading