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

Cleanup

parent f9ad0c19
No related branches found
No related tags found
No related merge requests found
...@@ -108,9 +108,9 @@ class MyBlockProblem<ConvexProblemTypeTEMPLATE>::IterateObject { ...@@ -108,9 +108,9 @@ class MyBlockProblem<ConvexProblemTypeTEMPLATE>::IterateObject {
if (j == m) if (j == m)
localA = &(*it); // localA = &A[m][m] localA = &(*it); // localA = &A[m][m]
(*it).umv(u[j], localb); // localb += A[m][j] * u[j] it->umv(u[j], localb); // localb += A[m][j] * u[j]
} }
localb -= problem.f[m]; localb -= problem.f[m]; // localb -= b[m]
assert(localA != NULL); assert(localA != NULL);
// FIXME: Hardcoding a fixed function here for now // FIXME: Hardcoding a fixed function here for now
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment