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

Cleanup

parent d9ddc901
No related branches found
No related tags found
No related merge requests found
......@@ -168,10 +168,8 @@ void minimisationInitialiser(Functional const &J, Bisection const &bisection,
double const Jx = (Jx2 < Jx1 ? Jx2 : Jx1);
SmallVector const x = (Jx2 < Jx1 ? x2 : x1);
if (Jx >= Jx_old) {
startingPoint = x_old;
return;
}
if (Jx >= Jx_old)
break;
Jx_old = Jx;
x_old = x;
......
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