Skip to content
Snippets Groups Projects
Commit a8914c33 authored by Reimar H Leike's avatar Reimar H Leike
Browse files

now testing zero-centered spaces

parent 2707f02f
No related branches found
No related tags found
3 merge requests!107Master,!102Test power space,!101Test power space
Pipeline #
...@@ -31,8 +31,18 @@ from itertools import product, chain ...@@ -31,8 +31,18 @@ from itertools import product, chain
#needed to check wether fftw is available #needed to check wether fftw is available
from d2o.config import dependency_injector as gdi from d2o.config import dependency_injector as gdi
HARMONIC_SPACES = [RGSpace((8,), harmonic=True), RGSpace((7,8), harmonic=True), RGSpace((5,5), harmonic=True), RGSpace((4,5,7), harmonic=True), HARMONIC_SPACES = [RGSpace((8,), harmonic=True),
LMSpace(6),LMSpace(9)] RGSpace((7,), harmonic=True,zerocenter=True),
RGSpace((8,), harmonic=True,zerocenter=True),
RGSpace((7,8), harmonic=True),
RGSpace((7,8), harmonic=True, zerocenter=True),
RGSpace((6,6), harmonic=True, zerocenter=True),
RGSpace((7,5), harmonic=True, zerocenter=True),
RGSpace((5,5), harmonic=True),
RGSpace((4,5,7), harmonic=True),
RGSpace((4,5,7), harmonic=True, zerocenter=True),
LMSpace(6),
LMSpace(9)]
#Try all sensible kinds of combinations of spaces, distributuion strategy and #Try all sensible kinds of combinations of spaces, distributuion strategy and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment