From 4b4d11b61aac8b23656ebda7896f72c7180de188 Mon Sep 17 00:00:00 2001 From: nicoo Date: Thu, 18 Jun 2020 21:38:28 +0200 Subject: [PATCH] factor: Add/update copyright notices as necessary (#1546) --- src/uu/factor/src/factor.rs | 7 ++----- src/uu/factor/src/numeric.rs | 5 ++--- src/uu/factor/src/rho.rs | 8 ++++++++ src/uu/factor/src/table.rs | 8 ++++++++ 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/src/uu/factor/src/factor.rs b/src/uu/factor/src/factor.rs index efe5cf7bb..457bed6bb 100644 --- a/src/uu/factor/src/factor.rs +++ b/src/uu/factor/src/factor.rs @@ -1,10 +1,7 @@ // * This file is part of the uutils coreutils package. // * -// * (c) T. Jameson Little -// * (c) Wiktor Kuropatwa -// * * 2015-02-23 ~ added Pollard rho method implementation -// * (c) kwantam -// * * 2015-04-29 ~ sped up trial division by adding table of prime inverses +// * (c) 2014 T. Jameson Little +// * (c) 2020 nicoo // * // * For the full copyright and license information, please view the LICENSE file // * that was distributed with this source code. diff --git a/src/uu/factor/src/numeric.rs b/src/uu/factor/src/numeric.rs index 4e0cee072..e95fd1948 100644 --- a/src/uu/factor/src/numeric.rs +++ b/src/uu/factor/src/numeric.rs @@ -1,8 +1,7 @@ // * This file is part of the uutils coreutils package. // * -// * (c) Wiktor Kuropatwa -// * (c) kwantam -// * * 20150507 ~ added big_ routines to prevent overflow when num > 2^63 +// * (c) 2015 Wiktor Kuropatwa +// * (c) 2020 nicoo // * // * For the full copyright and license information, please view the LICENSE file // * that was distributed with this source code. diff --git a/src/uu/factor/src/rho.rs b/src/uu/factor/src/rho.rs index 5416218e1..f15ef5468 100644 --- a/src/uu/factor/src/rho.rs +++ b/src/uu/factor/src/rho.rs @@ -1,3 +1,11 @@ +// * This file is part of the uutils coreutils package. +// * +// * (c) 2015 Wiktor Kuropatwa +// * (c) 2020 nicoo +// * +// * 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}; diff --git a/src/uu/factor/src/table.rs b/src/uu/factor/src/table.rs index f62b7c63a..6c59d3f07 100644 --- a/src/uu/factor/src/table.rs +++ b/src/uu/factor/src/table.rs @@ -1,3 +1,11 @@ +// * This file is part of the uutils coreutils package. +// * +// * (c) 2015 kwantam +// * (c) 2020 nicoo +// * +// * 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;