# HG changeset patch
# User Jeroen Demeyer <jdemeyer@cage.ugent.be>
# Date 1302596934 -7200
# Node ID 120b5b194fb27d29413105727b3ff1d51d296e20
# Parent 6014dd85219a51667b8030568dea1e2c0cfada8a
Add correctly formatted copyright statements
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/algebra.py
a
|
b
|
|
1 | 1 | """ |
2 | 2 | Interacts for Algebra and Number Theory |
3 | 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
4 | 8 | """ |
5 | 9 | |
6 | | |
7 | 10 | #***************************************************************************** |
8 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
9 | 12 | # |
10 | 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
11 | 16 | # http://www.gnu.org/licenses/ |
12 | 17 | #***************************************************************************** |
13 | 18 | |
| 19 | |
14 | 20 | from library import polar_prime_spiral |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/all.py
a
|
b
|
|
1 | 1 | """ |
2 | 2 | Interacts included with sage |
| 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
3 | 8 | """ |
| 9 | |
| 10 | #***************************************************************************** |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
| 12 | # |
| 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
| 16 | # http://www.gnu.org/licenses/ |
| 17 | #***************************************************************************** |
| 18 | |
| 19 | |
4 | 20 | import calculus |
5 | 21 | import geometry |
6 | 22 | import statistics |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/calculus.py
a
|
b
|
|
1 | 1 | """ |
2 | 2 | Interacts for Calculus |
3 | 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
4 | 8 | """ |
5 | 9 | |
6 | | |
7 | 10 | #***************************************************************************** |
8 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
9 | 12 | # |
10 | 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
11 | 16 | # http://www.gnu.org/licenses/ |
12 | 17 | #***************************************************************************** |
13 | 18 | |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/fractals.py
a
|
b
|
|
1 | 1 | """ |
2 | 2 | Interacts for Fractals |
3 | 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
4 | 8 | """ |
5 | 9 | |
6 | | |
7 | 10 | #***************************************************************************** |
8 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
9 | 12 | # |
10 | 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
11 | 16 | # http://www.gnu.org/licenses/ |
12 | 17 | #***************************************************************************** |
13 | 18 | |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/geometry.py
a
|
b
|
|
1 | 1 | """ |
2 | 2 | Interacts for Geometry |
3 | 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
4 | 8 | """ |
5 | 9 | |
6 | | |
7 | 10 | #***************************************************************************** |
8 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
9 | 12 | # |
10 | 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
11 | 16 | # http://www.gnu.org/licenses/ |
12 | 17 | #***************************************************************************** |
13 | 18 | |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/library.py
a
|
b
|
|
14 | 14 | sage: interacts.calculus.taylor_polynomial() |
15 | 15 | <html>...</html> |
16 | 16 | |
| 17 | AUTHORS: |
| 18 | |
| 19 | - William Stein |
| 20 | |
| 21 | - Harald Schilly, Robert Marik (2011-01-16): added many examples (#9623) partially based on work by Lauri Ruotsalainen |
| 22 | |
17 | 23 | """ |
18 | 24 | |
19 | | |
20 | 25 | #***************************************************************************** |
21 | | # Copyright (C) 2009 William Stein <wstein@gmail.com> |
22 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 26 | # Copyright (C) 2009 William Stein <wstein@gmail.com> |
| 27 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
23 | 28 | # |
24 | 29 | # Distributed under the terms of the GNU General Public License (GPL) |
| 30 | # as published by the Free Software Foundation; either version 2 of |
| 31 | # the License, or (at your option) any later version. |
25 | 32 | # http://www.gnu.org/licenses/ |
26 | 33 | #***************************************************************************** |
27 | 34 | |
| 35 | |
28 | 36 | from sage.all import * |
29 | 37 | # this is not imported in sage.all, so we have to import it |
30 | 38 | from sage.ext.fast_callable import fast_callable |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/library_cython.pyx
a
|
b
|
|
1 | 1 | r""" |
2 | 2 | Library of cythonized methods |
| 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
3 | 8 | """ |
4 | 9 | |
5 | 10 | #***************************************************************************** |
6 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
7 | 12 | # |
8 | | # Distributed under the terms of the GNU General Public License (GPL) |
9 | | # http://www.gnu.org/licenses/ |
| 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
| 16 | # http://www.gnu.org/licenses/ |
10 | 17 | #***************************************************************************** |
11 | 18 | |
12 | 19 | from sage.misc.misc import prod |
diff -r 6014dd85219a -r 120b5b194fb2 sage/interacts/statistics.py
a
|
b
|
|
1 | 1 | """ |
2 | 2 | Interacts for Statistics |
3 | 3 | |
| 4 | AUTHORS: |
| 5 | |
| 6 | - Harald Schilly (2011-01-16): initial version (#9623) partially based on work by Lauri Ruotsalainen |
| 7 | |
4 | 8 | """ |
5 | 9 | |
6 | | |
7 | 10 | #***************************************************************************** |
8 | | # Copyright (C) 2010 Harald Schilly <harald.schilly@gmail.com> |
| 11 | # Copyright (C) 2011 Harald Schilly <harald.schilly@gmail.com> |
9 | 12 | # |
10 | 13 | # Distributed under the terms of the GNU General Public License (GPL) |
| 14 | # as published by the Free Software Foundation; either version 2 of |
| 15 | # the License, or (at your option) any later version. |
11 | 16 | # http://www.gnu.org/licenses/ |
12 | 17 | #***************************************************************************** |
13 | 18 | |