Exemplo n.º 1
0
int 
GiSTnode::IsOverFull(const GiSTstore &store) const
{
    return Size() > store.PageSize();
}
Exemplo n.º 2
0
int
MTnode::IsUnderFull(const GiSTstore &store) const
{
	return ((MIN_UTIL>0)&&(Size()<(int)(store.PageSize()*MIN_UTIL)));
}
Exemplo n.º 3
0
int 
GiSTnode::IsUnderFull(const GiSTstore &store) const
{
    return Size() < store.PageSize() / 2;
}