Skip to content

Commit fe06ff4

Browse files
committed
smaller alloc
1 parent e3a0a76 commit fe06ff4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ def test_hessian_energy(self):
949949
def test_signed_distance(self):
950950
min_v = np.min(self.v1, axis=0)
951951
max_v = np.max(self.v1, axis=0)
952-
n = 64
952+
n = 16
953953
g = np.mgrid[min_v[0]:max_v[0]:complex(n), min_v[1]:max_v[1]:complex(n), min_v[2]:max_v[2]:complex(n)]
954954
p = np.vstack(map(np.ravel, g)).T
955955
s, i, c = igl.signed_distance(p, self.v1, self.f1)

0 commit comments

Comments
 (0)