0

我正在使用 C++ 进行研究。我很想知道如何使用 NTL 中的 LLL 函数来找到最短向量。我的代码如下;

#include <NTL/ZZ.h>
#include <NTL/matrix.h>
#include <NTL/mat_ZZ.h>
#include <NTL/vector.h>

using namespace std;
using namespace NTL;

int main()
{
    Mat<ZZ> B;
    cin >> B;
    cout << B << "\n";
    long LLL(ZZ& det2, mat_ZZ& B, long verbose = 0);
    cout << B << "\n";
}

但是,我输入到 B 中的矩阵并没有减少。怎么了?

4

1 回答 1

0

我意识到我忘记包含正确的库并且 LLL 的实现不正确。

这是我忘记包含的库。

#include <NTL/LLL/h>

要执行 LLL 算法,请执行以下操作

LLL_XD(B);
于 2017-11-15T08:01:13.693 回答