Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmatthews committed May 31, 2024
1 parent 90d2002 commit 7581cb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Binary file modified Plot/Figures/tardis_comparison.pdf
Binary file not shown.
8 changes: 7 additions & 1 deletion Plot/make_all_figures.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
import plot_tde, tardis_fig, plot_parallel_scaling
import plot_cv, plot_quasar
import sys
import sys, util

tex = "True"
if len(sys.argv) > 1:
if sys.argv[1] == "--notex":
tex = "False"

util.set_plot_defaults(tex=tex)

# Tests
tardis_fig.make_figure()

# Logistics
plot_parallel_scaling.make_figure()

# Illustrative Models
plot_cv.make_figure()
plot_quasar.make_figure()
plot_tde.make_figure()

0 comments on commit 7581cb3

Please sign in to comment.