Closed huanghua1994 closed 5 years ago
In SetupHalo_ref.cpp, the definition of externalToLocalMap is std::map<local_int_t, local_int_t>. However, line 147 and 152 use aglobal_int_tas the key of the map.externalToLocalMapshould bestd::map<global_int_t, local_int_t>`
externalToLocalMap
std::map<local_int_t, local_int_t>. However, line 147 and 152 use a
as the key of the map.
should be
Fixed by 134fe80c702f881ffe8a83ba6c8bf6a6d1849253
In SetupHalo_ref.cpp, the definition of
externalToLocalMap
isstd::map<local_int_t, local_int_t>. However, line 147 and 152 use a
global_int_tas the key of the map.
externalToLocalMapshould be
std::map<global_int_t, local_int_t>`