Skip to content

Commit

Permalink
Generative rotated molecules from a finite set of particules
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasLegendre1 committed Jul 10, 2021
1 parent 576b45c commit 8dd5c80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sim_volumes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
PARTICULES = np.asarray([[1, 0, 0, 3], [0, 8, 0, 5], [0, 0, 7, 9]])
N_VOLUMES = 2000
VOL_SIZE = 64
NAME = '4_points_3d'
NAME = "4_points_3d"
CENTER = 2


Expand Down
2 changes: 1 addition & 1 deletion test_sim_volumes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class TestSimVolumes:
def test_get_random_quat():
quaternions = sim_volumes.get_random_quat(5)
assert quaternions.shape == (5, 4)
assert type(quaternions) == np.ndarray
assert type(quaternions) is np.ndarray

@staticmethod
def test_uniform_rotations():
Expand Down

0 comments on commit 8dd5c80

Please sign in to comment.