Skip to content
Snippets Groups Projects
Commit 289f995c authored by Vincent Eberle's avatar Vincent Eberle
Browse files

boilerplate added

parent 2149722e
Branches
Tags
1 merge request!479Testing operators ve
Pipeline #75253 passed
# 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) 2020 Max-Planck-Society
#
# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik.
import numpy as np import numpy as np
from numpy.testing import assert_allclose from numpy.testing import assert_allclose
......
# 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) 2020 Max-Planck-Society
#
# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik.
import numpy as np import numpy as np
from numpy.testing import assert_allclose from numpy.testing import assert_allclose
...@@ -5,6 +22,7 @@ import nifty6 as ift ...@@ -5,6 +22,7 @@ import nifty6 as ift
from ..common import setup_function, teardown_function from ..common import setup_function, teardown_function
def test_contraction_operator(): def test_contraction_operator():
x1 = ift.RGSpace((9,), distances=2.) x1 = ift.RGSpace((9,), distances=2.)
x2 = ift.RGSpace((2, 12), distances=(0.3,)) x2 = ift.RGSpace((2, 12), distances=(0.3,))
......
...@@ -47,3 +47,4 @@ def test_integration_operator(): ...@@ -47,3 +47,4 @@ def test_integration_operator():
target_dtype=np.float64) target_dtype=np.float64)
ift.extra.consistency_check(op, domain_dtype=np.complex128, ift.extra.consistency_check(op, domain_dtype=np.complex128,
target_dtype=np.complex128) target_dtype=np.complex128)
# 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) 2020 Max-Planck-Society
#
# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik.
import numpy as np import numpy as np
from numpy.testing import assert_allclose from numpy.testing import assert_allclose
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment