You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line in gofmm::SelfTesting sets the target index to 1000 * i, where 0 <= i < ntest. LaunchHelper calls SelfTesting with ntest = 100, which triggers a segfault if the matrix has fewer than 100k rows.
This issue was fixed before here and reintroduced here. I suggest changing it back or doing something else that doesn't involve hardcoding indices.
The text was updated successfully, but these errors were encountered:
This line in
gofmm::SelfTesting
sets the target index to1000 * i
, where0 <= i < ntest
.LaunchHelper
callsSelfTesting
withntest = 100
, which triggers a segfault if the matrix has fewer than 100k rows.This issue was fixed before here and reintroduced here. I suggest changing it back or doing something else that doesn't involve hardcoding indices.
The text was updated successfully, but these errors were encountered: