-
Notifications
You must be signed in to change notification settings - Fork 42
Description
Dear developer,
Thank you for making this very fast implementation open source!
I have a question (so not a bug report) regarding the large database containing many short vectors.
Because of the dimensions for free trick, a workout (for say the 1.05 SVP challenge) usually finishes in a dimension lower than the dimension of the input matrix.
I was wondering if it was possible to write the vectors that are at that point in the database into the standard basis (in Python).
This is easy when the last sieving dimension is the same as the dimension of the input matrix B, since then we can just take B and compute v*B.
But otherwise we have to use B[l:r] according to your article.
I tried computing B[l:r] using GSO, but I was unsuccessful.
Is there a way to get this matrix, or some other way to get the vectors in standard basis?
Thanks!