Skip to content

Commit

Permalink
minor updates associated with username change
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvwx committed Jan 8, 2024
1 parent b4d2e48 commit 5a9272d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 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", "SVP", "shortest vector problem", "CVP", "closest vector problem", "LLL", "Lenstra-Lenstra-Lovász", "Seysen", "Brun", "VBLAST", "subset-sum problem", "Lagarias-Odlyzko", "Bailey–Borwein–Plouffe formula"]
license = "MIT"
version = "1.3.5"
version = "1.3.6"

[deps]
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# LLLplus.jl

[![Build Status](https://github.com/christianpeel/LLLplus.jl/workflows/CI/badge.svg)](https://github.com/christianpeel/LLLplus.jl/actions)
[![](https://img.shields.io/badge/docs-devel-blue.svg)](https://christianpeel.github.io/LLLplus.jl/dev)
[![Build Status](https://github.com/chrisvwx/LLLplus.jl/workflows/CI/badge.svg)](https://github.com/chrisvwx/LLLplus.jl/actions)
[![](https://img.shields.io/badge/docs-devel-blue.svg)](https://chrisvwx.github.io/LLLplus.jl/dev)

LLLplus provides lattice tools such as Lenstra-Lenstra-Lovász (LLL)
lattice reduction which are of practical and theoretical use in
Expand Down Expand Up @@ -30,9 +30,9 @@ functions are also included; see the `subsetsum`, `minimalpolynomial`,

Each function contains documentation and examples available via Julia's
built-in documentation system (try `?lll` or `@doc(lll)`). Documentation
for all functions is [available](https://christianpeel.github.io/LLLplus.jl/dev). A tutorial notebook is
for all functions is [available](https://chrisvwx.github.io/LLLplus.jl/dev). A tutorial notebook is
found in the [`docs`](docs/LLLplusTutorial.ipynb) directory or on
[nbviewer](https://nbviewer.jupyter.org/github/christianpeel/LLLplus.jl/blob/master/docs/LLLplusTutorial.ipynb).
[nbviewer](https://nbviewer.jupyter.org/github/chrisvwx/LLLplus.jl/blob/master/docs/LLLplusTutorial.ipynb).

Here are a few examples of using the functions in the
package on random lattices.
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ makedocs(
)

deploydocs(
repo = "github.com/christianpeel/LLLplus.jl.git"
repo = "github.com/chrisvwx/LLLplus.jl.git"
)
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ functions are also included; see the `subsetsum`, `minimalpolynomial`,

Each function contains documentation and examples available via Julia's
built-in documentation system (try `?lll` or `@doc(lll)`). Documentation
for all functions is [available](https://christianpeel.github.io/LLLplus.jl/dev). A tutorial notebook is
for all functions is [available](https://chrisvwx.github.io/LLLplus.jl/dev). A tutorial notebook is
found in the `docs` directory or on
[nbviewer](https://nbviewer.jupyter.org/github/christianpeel/LLLplus.jl/blob/master/docs/LLLplusTutorial.ipynb).
[nbviewer](https://nbviewer.jupyter.org/github/chrisvwx/LLLplus.jl/blob/master/docs/LLLplusTutorial.ipynb).

Here are a few examples of using the functions in the
package on random lattices.
Expand Down
2 changes: 1 addition & 1 deletion src/utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Volume of fundamental parallelepiped of a lattice with basis B.
# Examples
```jldoctest
julia> B = [1 2; 3 4]; LLLplus.volume(B)
1.9999999999999964
1.9999999999999933
```
"""
Expand Down

0 comments on commit 5a9272d

Please sign in to comment.