Joe Rowell
Joe Rowell
The patch looks fine, but it's not entirely satisfying for fpylll (if there's an issue with paths in fplll we should fix it across all systems). Still, it's good this...
I can't reproduce this: ``` In [1]: from fpylll import BKZ In [2]: BKZ.EasyParam(5) Out[2]: ``` Could you give us more details please? What version of fpylll are you using?
I also can't replicate this inside a [SagemathCell](https://sagecell.sagemath.org/?z=eJxLK8rPVUgrqMzJyVHIzC3ILypRcPKO4uUCEnquicWVAYlFibkappoAIoENXw==&lang=sage&interacts=eJyLjgUAARUAuQ==), so I'm leaning towards thinking it's an issue on your side. Maybe @malb has an idea?
Afaik, no one ever reviewed it. However, since it's a bit old now, I'll rebase with the most recent Cython changes and see if it still works. On Sat, 2...
Hi there, From googling, it looks like this is actually a case of an unfortunate name collision: https://pypi.org/project/estimator/ That is, that estimator is not the same as this estimator. You...
Fwiw: the constant probably shouldn't be 0.265, but rather 0.257 (see https://eprint.iacr.org/2021/570). Admittedly the difference will be pretty small, but if it's being changed anyway... On Mon, 13 Mar 2023,...
> Chen13 seems to match what we got for FPLLL: `~= 1/2e*beta*log(beta) - beta + 16` But it's a super-exponential factor off, no? It's quite a big difference at, say,...
Sorry for the noise! Could've swore I even checked your code :D On Fri, 23 Sept 2022, 11:25 Fernando Virdia, ***@***.***> wrote: > Yep, annoying mathematicians using natural logs everywhere...
It looks like the cost comes entirely from the calls to ```svp_dimension``` in ```lwe_primal.py```. If I run the following script (```seal_20_4096.py```): ``` from estimator import * LWE.primal_bdd(schemes.SEAL20_4096) ``` via [cProfile](https://docs.python.org/3/library/profile.html):...
@malb Do you have an opinion on if an amortized gaussian heuristic function should live inside fpylll or the estimator? I'm thinking of a function that essentially takes this loop...