Skip to content

Commit

Permalink
src/sage/rings/factorint*: Update/add copyright following 'git blame …
Browse files Browse the repository at this point in the history
…-M -C src/sage/rings/factorint.pyx -w --date=format:%Y 10.0.rc0 | sort -k2'
  • Loading branch information
Matthias Koeppe committed Apr 24, 2023
1 parent f82cbd1 commit e8051b8
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/sage/rings/factorint.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ AUTHORS:
"""

#*****************************************************************************
# Copyright (C) 2010 André Apitzsch <[email protected]>
# Copyright (C) 2010-2011 André Apitzsch <[email protected]>
# 2012 Nils Bruin
# 2014 David Roe
# 2014 Travis Scrimshaw
#
# Distributed under the terms of the GNU General Public License (GPL)
# as published by the Free Software Foundation; either version 2 of
Expand Down
17 changes: 16 additions & 1 deletion src/sage/rings/factorint_flint.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# sage.doctest: optional - sage.libs.flint

r"""
Integer factorization using FLINT
AUTHORS:
- Michael Orlitzky (2023)
"""

#*****************************************************************************
# Copyright (C) 2023 Michael Orlitzky
#
# Distributed under the terms of the GNU General Public License (GPL)
# as published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
# http://www.gnu.org/licenses/
#*****************************************************************************

from cysignals.signals cimport sig_on, sig_off

Expand Down
16 changes: 16 additions & 0 deletions src/sage/rings/factorint_pari.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# sage.doctest: optional - sage.libs.pari
r"""
Integer factorization using PARI
AUTHORS:
- Jeroen Demeyer (2015)
"""

#*****************************************************************************
# Copyright (C) 2015 Jeroen Demeyer
#
# Distributed under the terms of the GNU General Public License (GPL)
# as published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
# http://www.gnu.org/licenses/
#*****************************************************************************

from sage.libs.pari.all import pari
from sage.rings.integer cimport Integer
Expand Down

0 comments on commit e8051b8

Please sign in to comment.