estimator.reduction.CheNgu12.beta

Contents

estimator.reduction.CheNgu12.beta#

CheNgu12.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