From 208e34065b2d71afd2cec7e20138149a30ef3e0a Mon Sep 17 00:00:00 2001 From: Martin Reinecke <martin@mpa-garching.mpg.de> Date: Tue, 10 Oct 2017 09:23:05 +0200 Subject: [PATCH] remove unnecessary copyright notices --- nifty/__init__.py | 18 ------------------ nifty/energies/__init__.py | 18 ------------------ nifty/field_types/__init__.py | 18 ------------------ nifty/library/critical_filter/__init__.py | 2 -- .../log_normal_wiener_filter/__init__.py | 2 -- nifty/library/wiener_filter/__init__.py | 2 -- nifty/minimization/__init__.py | 18 ------------------ nifty/minimization/line_searching/__init__.py | 18 ------------------ nifty/operators/__init__.py | 18 ------------------ nifty/probing/__init__.py | 18 ------------------ nifty/spaces/__init__.py | 18 ------------------ 11 files changed, 150 deletions(-) diff --git a/nifty/__init__.py b/nifty/__init__.py index 27502383b..cab074f20 100644 --- a/nifty/__init__.py +++ b/nifty/__init__.py @@ -1,21 +1,3 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from __future__ import division from .version import __version__ diff --git a/nifty/energies/__init__.py b/nifty/energies/__init__.py index 79b8bff79..ea8f98a35 100644 --- a/nifty/energies/__init__.py +++ b/nifty/energies/__init__.py @@ -1,21 +1,3 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from .energy import Energy from .quadratic_energy import QuadraticEnergy from .line_energy import LineEnergy diff --git a/nifty/field_types/__init__.py b/nifty/field_types/__init__.py index 3b2f06118..a96a85808 100644 --- a/nifty/field_types/__init__.py +++ b/nifty/field_types/__init__.py @@ -1,20 +1,2 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from .field_type import FieldType from .field_array import FieldArray diff --git a/nifty/library/critical_filter/__init__.py b/nifty/library/critical_filter/__init__.py index 59526df89..c4d173b5d 100644 --- a/nifty/library/critical_filter/__init__.py +++ b/nifty/library/critical_filter/__init__.py @@ -1,4 +1,2 @@ -# -*- coding: utf-8 -*- - from .critical_power_curvature import CriticalPowerCurvature from .critical_power_energy import CriticalPowerEnergy diff --git a/nifty/library/log_normal_wiener_filter/__init__.py b/nifty/library/log_normal_wiener_filter/__init__.py index 012f3203c..3009fd935 100644 --- a/nifty/library/log_normal_wiener_filter/__init__.py +++ b/nifty/library/log_normal_wiener_filter/__init__.py @@ -1,4 +1,2 @@ -# -*- coding: utf-8 -*- - from .log_normal_wiener_filter_curvature import LogNormalWienerFilterCurvature from .log_normal_wiener_filter_energy import LogNormalWienerFilterEnergy diff --git a/nifty/library/wiener_filter/__init__.py b/nifty/library/wiener_filter/__init__.py index 58a4a46f6..174853bd2 100644 --- a/nifty/library/wiener_filter/__init__.py +++ b/nifty/library/wiener_filter/__init__.py @@ -1,4 +1,2 @@ -# -*- coding: utf-8 -*- - from .wiener_filter_curvature import WienerFilterCurvature from .wiener_filter_energy import WienerFilterEnergy diff --git a/nifty/minimization/__init__.py b/nifty/minimization/__init__.py index 44fc09e7e..76075150a 100644 --- a/nifty/minimization/__init__.py +++ b/nifty/minimization/__init__.py @@ -1,21 +1,3 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from .line_searching import * from .iteration_controlling import * from .minimizer import Minimizer diff --git a/nifty/minimization/line_searching/__init__.py b/nifty/minimization/line_searching/__init__.py index 386f90802..059403e7f 100644 --- a/nifty/minimization/line_searching/__init__.py +++ b/nifty/minimization/line_searching/__init__.py @@ -1,20 +1,2 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from .line_search import LineSearch from .line_search_strong_wolfe import LineSearchStrongWolfe diff --git a/nifty/operators/__init__.py b/nifty/operators/__init__.py index 44d68e4f0..aa2154de3 100644 --- a/nifty/operators/__init__.py +++ b/nifty/operators/__init__.py @@ -1,21 +1,3 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from __future__ import division from .linear_operator import LinearOperator diff --git a/nifty/probing/__init__.py b/nifty/probing/__init__.py index fe9254d07..db60a9e65 100644 --- a/nifty/probing/__init__.py +++ b/nifty/probing/__init__.py @@ -1,21 +1,3 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from .prober import Prober from .diagonal_prober_mixin import DiagonalProberMixin from .trace_prober_mixin import TraceProberMixin diff --git a/nifty/spaces/__init__.py b/nifty/spaces/__init__.py index 32215f362..9adec1936 100644 --- a/nifty/spaces/__init__.py +++ b/nifty/spaces/__init__.py @@ -1,21 +1,3 @@ -# 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/>. -# -# Copyright(C) 2013-2017 Max-Planck-Society -# -# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik -# and financially supported by the Studienstiftung des deutschen Volkes. - from .gl_space import GLSpace from .hp_space import HPSpace from .lm_space import LMSpace -- GitLab