Comment out debug prints

Former-commit-id: d83e8d7cc142792199a3eeb6884b5a12f1ee6b4f
This commit is contained in:
Marek Nečada 2019-06-19 15:09:16 +03:00
parent f1456db691
commit 9d93b93ce9
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ orig_y = (np.arange(Ny/2) + (0 if (Ny % 2) else .5)) * py
orig_xy = np.stack(np.meshgrid(orig_x, orig_y), axis = -1)
tmatrix = interp(omega)
print(tmatrix.m)
#print(tmatrix.m)
particles = [Particle(orig_xy[i], tmatrix) for i in np.ndindex(orig_xy.shape[:-1])]
@ -53,7 +53,7 @@ for iri in range(ss.nirreps):
print(destpath, 'already exists, skipping')
continue
mm_iri = ss.modeproblem_matrix_packed(k, iri)
print(mm_iri)
#print(mm_iri)
U, S, Vh = np.linalg.svd(mm_iri)
del U
print(iri, ss.irrep_names[iri], S[-1])