From eaa6521a1d0245258855924de0424c4d32676727 Mon Sep 17 00:00:00 2001 From: "Martin D. Weinberg" Date: Sat, 12 Oct 2024 21:04:52 -0400 Subject: [PATCH] Exit after data creation; sanity check --- tests/Halo/createCoefs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Halo/createCoefs.py b/tests/Halo/createCoefs.py index 085055b2..33d7dcbd 100644 --- a/tests/Halo/createCoefs.py +++ b/tests/Halo/createCoefs.py @@ -27,8 +27,6 @@ print("---- created basis") -exit(0) - # Make some fake body data # @@ -46,6 +44,8 @@ ypos.append(random.random()*2.0 - 1.0) zpos.append(random.random()*2.0 - 1.0) +exit(0) + print("---- createFromArray usings lists") coef1 = basis.createFromArray(mass, [xpos, ypos, zpos], time=3.0)