Skip to content

Commit da930eb

Browse files
author
Matthias Koeppe
committed
Add copyright headers
1 parent b3a9317 commit da930eb

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

src/sage/symbolic/expression_conversion_algebraic.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
r"""
22
Conversion of symbolic expressions to algebraic numbers
33
"""
4+
# ****************************************************************************
5+
# Copyright (C) 2009-2012 Mike Hansen
6+
# 2015-2018 Ralf Stephan
7+
# 2015 Nils Bruin
8+
# 2017 Jeroen Demeyer
9+
# 2019-2022 Frédéric Chapoton
10+
# 2021 Dave Witte Morris
11+
# 2023 Vincent Delecroix
12+
#
13+
# This program is free software: you can redistribute it and/or modify
14+
# it under the terms of the GNU General Public License as published by
15+
# the Free Software Foundation, either version 2 of the License, or
16+
# (at your option) any later version.
17+
# https://www.gnu.org/licenses/
18+
# ****************************************************************************
419

520
from operator import eq, ne, gt, lt, ge, le, mul, pow, neg, add, truediv
621
from functools import reduce

src/sage/symbolic/expression_conversion_sympy.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
r"""
33
Conversion of symbolic expressions to SymPy
44
"""
5+
# ****************************************************************************
6+
# Copyright (C) 2009 Mike Hansen
7+
# 2011 D. S. McNeil
8+
# 2011 Francois Bissey
9+
# 2017 Ralf Stephan
10+
# 2017 Marco Mancini
11+
# 2017 Travis Scrimshaw
12+
#
13+
# This program is free software: you can redistribute it and/or modify
14+
# it under the terms of the GNU General Public License as published by
15+
# the Free Software Foundation, either version 2 of the License, or
16+
# (at your option) any later version.
17+
# https://www.gnu.org/licenses/
18+
# ****************************************************************************
519

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

src/sage/symbolic/symbols.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
r"""
2+
Symbol table
3+
"""
4+
# ****************************************************************************
5+
# Copyright (C) 2009 Mike Hansen
6+
#
7+
# This program is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 2 of the License, or
10+
# (at your option) any later version.
11+
# https://www.gnu.org/licenses/
12+
# ****************************************************************************
13+
114
symbol_table = {'functions': {}}
215

316

0 commit comments

Comments
 (0)