Final SVD fix.

This commit is contained in:
sebcrozet 2019-03-19 22:52:57 +01:00
parent 3edef2f006
commit b0a9eab0b9
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ pub fn reflection_axis_mut<N: Complex, D: Dim, S: StorageMut<N, D>>(
column.unscale_mut(factor.sqrt());
(-signed_norm, true)
} else {
(-signed_norm, false)
// FIXME: not sure why we don't have a - sign here.
(signed_norm, false)
}
}