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
The crash happens because the code tries to access index j = 25587416 in v, but the size of v is only 25587416, so we have an off by one error. I also see another problem: The value of last_k64 is 4097 but on line 289 of select_support_mcl.hpp we assign a value to arg_position[last_k64-1], which is one off the end of the array, since the size of the array is 4096.
The init_fast function of select_support_mcl crashes with the following error:
Assertion failed: (idx < this->size()), function operator[]
My code is the following:
The file init_fast_killer.txt is attached (11MB).
The local variables at the moment of the crash are:
The crash happens because the code tries to access index j = 25587416 in v, but the size of v is only 25587416, so we have an off by one error. I also see another problem: The value of last_k64 is 4097 but on line 289 of select_support_mcl.hpp we assign a value to arg_position[last_k64-1], which is one off the end of the array, since the size of the array is 4096.
init_fast_killer.txt
The text was updated successfully, but these errors were encountered: