Skip to content

Commit

Permalink
v1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvwx committed Apr 11, 2020
1 parent e115d74 commit 5271aac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "LLLplus"
uuid = "142c1900-a1c3-58ae-a66d-b187f9ca6423"
keywords = ["lattice reduction", "lattice basis reduction", "shortest vector problem", "closest vector problem", "LLL", "Lenstra-Lenstra-Lovász", "Seysen", "Brun", "VBLAST", "subset-sum problem","Lagarias-Odlyzko","Bailey–Borwein–Plouffe formula"]
license = "MIT"
version = "1.2.9"
version = "1.2.8"

[deps]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,19 @@ package on random lattices.
```julia
Pkg.add("LLLplus")
using LLLplus
# repeat the commands below to remove JIT compile time

# Time the decomposition of a matrix with randn entries
# do lattice reduction on a matrix with randn entries
N = 100;
H = randn(N,N);
@time B,T = sizereduction(H);
@time B,T = brun(H);
@time B,T = lll(H);
@time B,T = seysen(H);
@time W,P,B = vblast(H);
B,T = brun(H);
B,T = lll(H);
B,T = seysen(H);

# check out the CVP solver
@time Q,R=qr(H);
Q,R=qr(H);
u=Int.(rand(0:1e10,N));
y=H*u+rand(N)/100;
@time uhat=cvp(Q'*y,R);
uhat=cvp(Q'*y,R);
sum(abs.(u-uhat))
```

Expand Down

2 comments on commit 5271aac

@chrisvwx
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/12759

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.8 -m "<description of version>" 5271aac7bdc537dbb3d83f253ab9781c5b73e875
git push origin v1.2.8

Please sign in to comment.