fpylll icon indicating copy to clipboard operation
fpylll copied to clipboard

A Python interface for https://github.com/fplll/fplll

Results 32 fpylll issues
Sort by recently updated
recently updated
newest added

Suppose `A` is the original lattice, and `B` is the result obtained by lattice reduction. If I want to retain the chirality of the bases before and after the lattice...

After a ```from fpylll import *```, ```load_strategies_json(BKZ.DEFAULT_STRATEGY)``` fails stating "Cannot open strategies file." ; because in fact it should be: ```load_strategies_json(BKZ.DEFAULT_STRATEGY_PATH + BKZ.DEFAULT_STRATEGY)``` or some such. Notice that all of...

When I use the function "SVP.shortest_vector" like this: ``` def solve_svp(svp_basis_B): B = IntegerMatrix.from_matrix(svp_basis_B) v = list(SVP.shortest_vector(B)) return list(B[1]) #do something SVP_Lattice_Basis = hnp_to_svp(L_bits,EqualNum,list_Alpha[:EqualNum],list_U[:EqualNum],q) target_vector = solve_svp(SVP_Lattice_Basis) ``` Error occurred...

I've seen this issue first in Sage: https://trac.sagemath.org/ticket/34091 and decided to give fpylll a try as well. It neither ever finishes the job but at least prints a bunch of...

When we run the following code, some errors occur. The code is: ``` from fpylll import BKZ BKZ.EasyParam(5) ``` Error reported as: ``` --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last)...

Hello! developer How does this library solve the approximate CVP problem?thank!

I previously raised the issue that I can not install and activate `fpylll` on `Ubuntu 18.04.5 LTS (bionic)` https://github.com/fplll/fpylll/issues/214 I was unable to activate When I run my script, I...

Trying to install **Fpylll** package on **Ubuntu** as per the doc: [LINK](https://ubuntu.pkgs.org/21.04/ubuntu-universe-amd64/python3-fpylll_0.5.2+ds1-3_amd64.deb.html) ``` Update the package index: # sudo apt-get update Install python3-fpylll deb package: # sudo apt-get install python3-fpylll...

I think python3-dev (on ubuntu) is required!

after some issues, here is my mimimal installation method ``` brew install fplll pip install fpylll ```