Skip to content
Snippets Groups Projects
Commit 22302cbd authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Switch around order of computation

Simply because it's the same as in the blocktnnmgproblem class
parent e181b7a1
No related branches found
No related tags found
No related merge requests found
......@@ -163,15 +163,13 @@ void minimise(Functional const J, typename Functional::SmallVector &x,
since A is symmetric.
*/
SmallVector tmp;
SmallVector tmp = J.b; // b
J.A.mmv(x, tmp); // b-Au
double const JRestb = tmp * descDir; // <b-Au,v>
J.A.mv(descDir, tmp); // Av
double const JRestA = tmp * descDir; // <Av,v>
tmp = J.b; // b
J.A.mmv(x, tmp); // b-Au
double const JRestb = tmp * descDir; // <b-Au,v>
MyDirectionalConvexFunction<LocalNonlinearityType> JRest(
JRestA, JRestb, *J.phi, x, descDir);
// }}}
......
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