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.
This line in
gofmm::SelfTestingsets the target index to1000 * i, where0 <= i < ntest.LaunchHelpercallsSelfTestingwithntest = 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.