Skip to content

Commit

Permalink
[ODESolver] Update data comment in EulerImplicit (sofa-framework#5282)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugtalbot authored Feb 19, 2025
1 parent fee9657 commit 5307e85
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,13 @@ EulerImplicitSolver::EulerImplicitSolver()
, d_solveConstraint(initData(&d_solveConstraint, false, "solveConstraint", "Apply ConstraintSolver (requires a ConstraintSolver in the same node as this solver, disabled by by default for now)") )
, d_threadSafeVisitor(initData(&d_threadSafeVisitor, false, "threadSafeVisitor", "If true, do not use realloc and free visitors in fwdInteractionForceField."))
, d_computeResidual(initData(&d_computeResidual, false, "computeResidual", "If true, the residual is computed at the end of the solving"))
, d_residual(initData(&d_residual, std::numeric_limits<SReal>::max(), "residual", "Residual norm at the end of the solving"))
, d_residual(initData(&d_residual, std::numeric_limits<SReal>::max(), "residual", "Residual norm at the end of the free-motion solving"))
{
f_rayleighStiffness.setOriginalData(&d_rayleighStiffness);
f_rayleighMass.setOriginalData(&d_rayleighMass);
f_velocityDamping.setOriginalData(&d_velocityDamping);
f_firstOrder.setOriginalData(&d_firstOrder);
f_solveConstraint.setOriginalData(&d_solveConstraint);

}

void EulerImplicitSolver::init()
Expand Down

0 comments on commit 5307e85

Please sign in to comment.