Skip to content

Commit

Permalink
Fixed url
Browse files Browse the repository at this point in the history
  • Loading branch information
jwood000 committed Aug 14, 2023
1 parent 80ed3e4 commit f252d54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ head(testBaseSort)

* [Implementing the Elliptic Curve Method of Factoring in Reconfigurable Hardware](<https://www.iacr.org/archive/ches2006/10/10.pdf>) by Gaj K. et al.

* [Integer Factorization using the Quadratic Sieve](<http://micsymposium.org/mics_2011_proceedings/mics2011_submission_28.pdf>) by Chad Seibert
* [Integer Factorization using the Quadratic Sieve](<https://micsymposium.org/mics_2011_proceedings/mics2011_submission_28.pdf>) by Chad Seibert

* In the stackoverflow question and answer [What is the most efficient factoring algorithm for quadratic sieve extraction phase?](<https://stackoverflow.com/q/63541365/4408538>) by [Ilya Gazman](<https://github.com/gazman-sdk>), an efficient method for checking divisibility is sketched out that utilizes built-in types. You can see more on a video Ilya put on youtube: [E15: Quadratic Sieve Running on Java - Receiving](<https://youtu.be/sXg_WrCUX-Q>). While `mpz_divisible_ui_p` is very efficient, we found better performance using this method.

Expand Down
2 changes: 1 addition & 1 deletion scripts/readme_script.R
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ reprex::reprex({
#'
#' * [Implementing the Elliptic Curve Method of Factoring in Reconfigurable Hardware](<https://www.iacr.org/archive/ches2006/10/10.pdf>) by Gaj K. et al.
#'
#' * [Integer Factorization using the Quadratic Sieve](<http://micsymposium.org/mics_2011_proceedings/mics2011_submission_28.pdf>) by Chad Seibert
#' * [Integer Factorization using the Quadratic Sieve](<https://micsymposium.org/mics_2011_proceedings/mics2011_submission_28.pdf>) by Chad Seibert
#'
#' * In the stackoverflow question and answer [What is the most efficient factoring algorithm for quadratic sieve extraction phase?](https://stackoverflow.com/q/63541365/4408538) by [Ilya Gazman](https://github.com/gazman-sdk), an efficient method for checking divisibility is sketched out that utilizes built-in types. You can see more on a video Ilya put on youtube: [E15: Quadratic Sieve Running on Java - Receiving](https://youtu.be/sXg_WrCUX-Q). While `mpz_divisible_ui_p` is very efficient, we found better performance using this method.
#'
Expand Down

0 comments on commit f252d54

Please sign in to comment.