1
0
Fork 0
mirror of https://github.com/Findus23/halo_comparison.git synced 2024-09-19 16:03:50 +02:00

simplify halo_mass_functions

This commit is contained in:
Lukas Winkler 2022-07-21 14:23:30 +02:00
parent e554bb7ce3
commit 6eb0d36529
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -25,10 +25,12 @@ def monofonic_tests():
fig: Figure = plt.figure(figsize=figsize_from_page_fraction())
ax: Axes = fig.gca()
linestyles = ["solid", "dashed", "dotted", "dashdot"]
resolutions = [128, 256, 512]
linestyles = ["solid", "dotted"]
resolutions = [128]
if has_1024_simulations:
resolutions.append(1024)
else:
resolutions.append(512)
for i, waveform in enumerate(["DB2", "shannon"]):
for j, resolution in enumerate(resolutions):