in src/ds/ptrwrap.h [209:230]
SNMALLOC_CONSTEVAL bool is_spatial_refinement()
{
if (BI::address_space_control != BO::address_space_control)
{
return false;
}
if (BI::wildness != BO::wildness)
{
return false;
}
switch (BI::spatial)
{
using namespace capptr::dimension;
case Spatial::Chunk:
return true;
case Spatial::Alloc:
return BO::spatial == Spatial::Alloc;
}
}