Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Adding licence & author
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Caruso committed Sep 8, 2016
1 parent 991cc70 commit 036fb2a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sage/categories/action.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,10 @@ cdef class BaseActionOnRing(Action):
z4^3 + 2*z4^2 + 4*z4 + 3
sage: z4 * z2
z4^3 + 2*z4^2 + 4*z4 + 3
AUTHOR:
- Xavier Caruso (2016)
"""
def __init__(self, algebra):
r"""
Expand Down
11 changes: 11 additions & 0 deletions src/sage/rings/algebra_from_morphism.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@
- Xavier Caruso (2016)
"""

#############################################################################
# Copyright (C) 2016 Xavier Caruso <xavier.caruso@normalesup.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License 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.structure.unique_representation import UniqueRepresentation
from sage.categories.pushout import pushout
from sage.categories.algebras import Algebras
Expand Down
11 changes: 11 additions & 0 deletions src/sage/rings/algebra_from_morphism_constructor.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@
- Xavier Caruso (2016)
"""

#############################################################################
# Copyright (C) 2016 Xavier Caruso <xavier.caruso@normalesup.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License 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.rings.integer_ring import IntegerRing
from sage.rings.algebra_from_morphism import AlgebraFromMorphism

Expand Down
4 changes: 4 additions & 0 deletions src/sage/structure/element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3565,6 +3565,10 @@ cdef generic_power_c(a, nn, one):
cdef class AlgebraFMElement(CommutativeAlgebraElement):
r"""
Generic class for elements lying in ring extensions
AUTHOR:
- Xavier Caruso (2016)
"""
def __init__(self, parent, element):
from sage.rings.algebra_from_morphism import AlgebraFromMorphism
Expand Down

0 comments on commit 036fb2a

Please sign in to comment.