Skip to content

Commit

Permalink
More 3.2.9 compat workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
vvolkl authored Mar 2, 2018
1 parent 4ed98f2 commit 49f1ed7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tricktrack/RiemannFit.h
Original file line number Diff line number Diff line change
Expand Up @@ -661,11 +661,11 @@ inline circle_fit Circle_fit(const Matrix2xNd& hits2D, const Matrix2Nd& hits_cov
VectorNd t0(n);
VectorNd t1(n);
if (l == k) {
t0 = 2. * D_[j][l] * s_v.col(l);
t0 = (D_[j][l] * s_v.col(l)) * 2.;
if (i == j)
t1 = t0;
else
t1 = 2. * D_[i][l] * s_v.col(l);
t1 = (D_[i][l] * s_v.col(l)) * 2.;
} else {
t0 = D_[j][l] * s_v.col(k) + D_[j][k] * s_v.col(l);
if (i == j)
Expand Down

0 comments on commit 49f1ed7

Please sign in to comment.