estimator.reduction.ABLR21.beta

Contents

estimator.reduction.ABLR21.beta#

ABLR21.beta()#

Estimate required block size β for a given root-hermite factor δ based on [PhD:Chen13].

Parameters:

delta – Root-hermite factor.

EXAMPLE:

>>> from estimator.reduction import RC
>>> 50 == RC.beta(1.0121)
True
>>> 100 == RC.beta(1.0093)
True
>>> RC.beta(1.0024) # Chen reports 800
808