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
ch <- checkHemisphering(map)
R(56515,0x11b889e00) malloc: *** error for object 0x7f815c472f60: pointer being freed was not allocated
R(56515,0x11b889e00) malloc: *** set a breakpoint in malloc_error_break to debug
zsh: abort R
src/ac_hemi_test.cpp Line 72:
hemi_ag_improved_coords(3) = grid_results.zcoords( sub(2) );
should be
Line 72:
hemi_ag_improved_coords(2) = grid_results.zcoords( sub(2) );
The text was updated successfully, but these errors were encountered:
checkHemisphering doesn't work for 3D maps, is fine for 2D maps. Typo on line 72 as below.
src/ac_hemi_test.cpp
Line 72:
hemi_ag_improved_coords(3) = grid_results.zcoords( sub(2) );
should be
Line 72:
hemi_ag_improved_coords(2) = grid_results.zcoords( sub(2) );
The text was updated successfully, but these errors were encountered: