Skip to content
Snippets Groups Projects
Commit 6c666180 authored by Dr. Jorrit Fahlke's avatar Dr. Jorrit Fahlke
Browse files

Merge branch 'fix-matrixfree-apply' into 'master'

Clear result in matrix-free operator apply()

Closes #10

See merge request jfahl_01/pacxx-projectseminar-2019!13
parents 1d5df449 4666dd88
No related branches found
No related tags found
1 merge request!13Clear result in matrix-free operator apply()
Pipeline #19553 passed
......@@ -75,6 +75,7 @@ namespace PPS {
//! apply operator to x: \f$ y = A(x) \f$
void apply (const X& x, Y& y) const override
{
y = 0;
go_->nonlinear_jacobian_apply(linearizationPoint_, x, y);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment