You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the steppers, there are currently routines to compute the residual and the Jacobian. We should add an "applyJacobian" routine to enable, e.g., matrix-free solvers. This could be very important if we want to use Pressio to time march certain types of FOMs. This could look like,
void applyJacobian(vector_t v , vector_t Jv){
/* compute Jv through appropriate method, e.g., for finite difference
Jv = 1./eps*( residual(v + eps) - residual(v) )
*/
}
The text was updated successfully, but these errors were encountered:
In the steppers, there are currently routines to compute the residual and the Jacobian. We should add an "applyJacobian" routine to enable, e.g., matrix-free solvers. This could be very important if we want to use Pressio to time march certain types of FOMs. This could look like,
The text was updated successfully, but these errors were encountered: