mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
factor: Add/update copyright notices as necessary (#1546)
This commit is contained in:
parent
6105cce69a
commit
4b4d11b61a
4 changed files with 20 additions and 8 deletions
|
@ -1,10 +1,7 @@
|
|||
// * This file is part of the uutils coreutils package.
|
||||
// *
|
||||
// * (c) T. Jameson Little <t.jameson.little@gmail.com>
|
||||
// * (c) Wiktor Kuropatwa <wiktor.kuropatwa@gmail.com>
|
||||
// * * 2015-02-23 ~ added Pollard rho method implementation
|
||||
// * (c) kwantam <kwantam@gmail.com>
|
||||
// * * 2015-04-29 ~ sped up trial division by adding table of prime inverses
|
||||
// * (c) 2014 T. Jameson Little <t.jameson.little@gmail.com>
|
||||
// * (c) 2020 nicoo <nicoo@debian.org>
|
||||
// *
|
||||
// * For the full copyright and license information, please view the LICENSE file
|
||||
// * that was distributed with this source code.
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
// * This file is part of the uutils coreutils package.
|
||||
// *
|
||||
// * (c) Wiktor Kuropatwa <wiktor.kuropatwa@gmail.com>
|
||||
// * (c) kwantam <kwantam@gmail.com>
|
||||
// * * 20150507 ~ added big_ routines to prevent overflow when num > 2^63
|
||||
// * (c) 2015 Wiktor Kuropatwa <wiktor.kuropatwa@gmail.com>
|
||||
// * (c) 2020 nicoo <nicoo@debian.org>
|
||||
// *
|
||||
// * For the full copyright and license information, please view the LICENSE file
|
||||
// * that was distributed with this source code.
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
// * This file is part of the uutils coreutils package.
|
||||
// *
|
||||
// * (c) 2015 Wiktor Kuropatwa <wiktor.kuropatwa@gmail.com>
|
||||
// * (c) 2020 nicoo <nicoo@debian.org>
|
||||
// *
|
||||
// * For the full copyright and license information, please view the LICENSE file
|
||||
// * that was distributed with this source code.
|
||||
|
||||
use rand::distributions::{Distribution, Uniform};
|
||||
use rand::rngs::SmallRng;
|
||||
use rand::{thread_rng, SeedableRng};
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
// * This file is part of the uutils coreutils package.
|
||||
// *
|
||||
// * (c) 2015 kwantam <kwantam@gmail.com>
|
||||
// * (c) 2020 nicoo <nicoo@debian.org>
|
||||
// *
|
||||
// * For the full copyright and license information, please view the LICENSE file
|
||||
// * that was distributed with this source code.
|
||||
|
||||
// spell-checker: ignore (ToDO) INVS
|
||||
|
||||
use std::num::Wrapping;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue