diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-06 01:10:32 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-06 01:10:32 +0200 |
commit | 8767f2e78f63cb131bd11aefbb15547085d9de08 (patch) | |
tree | 1b67acb9c5a92a0a2fddba822b2eae5677c07f70 /test | |
parent | add an example designed to break monotonicity (diff) | |
download | blueshift-8767f2e78f63cb131bd11aefbb15547085d9de08.tar.gz blueshift-8767f2e78f63cb131bd11aefbb15547085d9de08.tar.bz2 blueshift-8767f2e78f63cb131bd11aefbb15547085d9de08.tar.xz |
forgot the license
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'test')
-rwxr-xr-x | test/cubic_interpolation | 15 | ||||
-rwxr-xr-x | test/linear_interpolation | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/test/cubic_interpolation b/test/cubic_interpolation index f388e04..6346547 100755 --- a/test/cubic_interpolation +++ b/test/cubic_interpolation @@ -1,6 +1,21 @@ #!/usr/bin/env python3 # -*- python -*- +# Copyright © 2014 Mattias Andrée (maandree@member.fsf.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 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + # Test of cubic interpolation. diff --git a/test/linear_interpolation b/test/linear_interpolation index 7bca841..b726f5f 100755 --- a/test/linear_interpolation +++ b/test/linear_interpolation @@ -1,6 +1,21 @@ #!/usr/bin/env python3 # -*- python -*- +# Copyright © 2014 Mattias Andrée (maandree@member.fsf.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 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + # Test of linear interpolation. # Intended as a test of the test and |