Skip to content

Commit

Permalink
Add copyright headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 21, 2023
1 parent b3a9317 commit da930eb
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/sage/symbolic/expression_conversion_algebraic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
r"""
Conversion of symbolic expressions to algebraic numbers
"""
# ****************************************************************************
# Copyright (C) 2009-2012 Mike Hansen
# 2015-2018 Ralf Stephan
# 2015 Nils Bruin
# 2017 Jeroen Demeyer
# 2019-2022 Frédéric Chapoton
# 2021 Dave Witte Morris
# 2023 Vincent Delecroix
#
# 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.
# https://www.gnu.org/licenses/
# ****************************************************************************

from operator import eq, ne, gt, lt, ge, le, mul, pow, neg, add, truediv
from functools import reduce
Expand Down
14 changes: 14 additions & 0 deletions src/sage/symbolic/expression_conversion_sympy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
r"""
Conversion of symbolic expressions to SymPy
"""
# ****************************************************************************
# Copyright (C) 2009 Mike Hansen
# 2011 D. S. McNeil
# 2011 Francois Bissey
# 2017 Ralf Stephan
# 2017 Marco Mancini
# 2017 Travis Scrimshaw
#
# 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.
# https://www.gnu.org/licenses/
# ****************************************************************************

from operator import eq, ne, gt, lt, ge, le, mul, pow, neg, add, truediv

Expand Down
13 changes: 13 additions & 0 deletions src/sage/symbolic/symbols.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
r"""
Symbol table
"""
# ****************************************************************************
# Copyright (C) 2009 Mike Hansen
#
# 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.
# https://www.gnu.org/licenses/
# ****************************************************************************

symbol_table = {'functions': {}}


Expand Down

0 comments on commit da930eb

Please sign in to comment.