We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abda13a commit a311f9bCopy full SHA for a311f9b
tests/test_FFBbasis2D.py
@@ -11,15 +11,18 @@
11
from aspire.utils.misc import grid_2d
12
from aspire.volume import Volume
13
14
+from ._basis_util import Steerable2DMixin
15
+
16
logger = logging.getLogger(__name__)
17
DATA_DIR = os.path.join(os.path.dirname(__file__), "saved_test_data")
18
19
-class FFBBasis2DTestCase(TestCase):
20
+class FFBBasis2DTestCase(TestCase, Steerable2DMixin):
21
def setUp(self):
22
self.dtype = np.float32 # Required for convergence of this test
23
self.L = 8
24
self.basis = FFBBasis2D((self.L, self.L), dtype=self.dtype)
25
+ self.seed = 9161341
26
27
def tearDown(self):
28
pass
0 commit comments