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
I recently experience issue #135. The reason of not respected boundaries turned out to be here:
if (phenocandidates.size())
_solutions._candidates.at(r).set_fvalue(
_func(phenocandidates.col(r).data(), candidates.rows()));
The expression phenocandidates.col(r).data() assumes that the column data is adjacent in memory, which in fact depends on the defaults of the Eigen library. Suggested fix (in eo_matrix.h):
I recently experience issue #135. The reason of not respected boundaries turned out to be here:
The expression
phenocandidates.col(r).data()
assumes that the column data is adjacent in memory, which in fact depends on the defaults of the Eigen library. Suggested fix (in eo_matrix.h):The text was updated successfully, but these errors were encountered: