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
At the moment we re-construct the Jacobian on every optimization step.
But the sparsity structure of the jacobian never changes, so we could hand in the jacobian from the previous step.
This would remove the need to re-allocate the jacobian on every optimization step.
(In code this means, we could dispense with "set_from_triplets" in all but the first optimization step).
The text was updated successfully, but these errors were encountered:
At the moment we re-construct the Jacobian on every optimization step.
But the sparsity structure of the jacobian never changes, so we could hand in the jacobian from the previous step.
This would remove the need to re-allocate the jacobian on every optimization step.
(In code this means, we could dispense with "set_from_triplets" in all but the first optimization step).
The text was updated successfully, but these errors were encountered: