"Source: Text/System/Par.text";
"Line: 1620";
"Date: Mon May 29 16:04:52 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/System/Par.text, line: 1620
// Example: H5E16 ()
print "Example: H5E16";
ei := GetEchoInput();
SetEchoInput(true);
//no-test
SetNthreads(32);
d := 60; 
B:= Matrix(d, d, [Random([-99..99]) : i in [1..d^2]]);
L := LatticeWithBasis(B);
L:Minimal;
w := Vector([Random([-99..99]) : i in [1..d]]);
w;
Norm(w);
time sv := ClosestVector(L, w);
 sv;
Norm(sv);
Norm(sv - w);
SetEchoInput(ei);
