Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions autogalaxy/plot/plot_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def _caustics_from(mass_obj, grid):
tuple[list, list]
``(tangential_caustics, radial_caustics)``.
"""
if os.environ.get("PYAUTO_DISABLE_CRITICAL_CAUSTICS") == "1":
if os.environ.get("PYAUTO_FAST_PLOTS") == "1":
return [], []

from autogalaxy.operate.lens_calc import LensCalc
Expand Down Expand Up @@ -428,7 +428,7 @@ def _critical_curves_from(mass_obj, grid, tc=None, rc=None):
"""
from autogalaxy.operate.lens_calc import LensCalc

if os.environ.get("PYAUTO_DISABLE_CRITICAL_CAUSTICS") == "1":
if os.environ.get("PYAUTO_FAST_PLOTS") == "1":
return [], []

if tc is None:
Expand Down
4 changes: 2 additions & 2 deletions autogalaxy/util/plot_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def _caustics_from(mass_obj, grid):
tuple[list, list]
``(tangential_caustics, radial_caustics)``.
"""
if os.environ.get("PYAUTO_DISABLE_CRITICAL_CAUSTICS") == "1":
if os.environ.get("PYAUTO_FAST_PLOTS") == "1":
return [], []

from autogalaxy.operate.lens_calc import LensCalc
Expand Down Expand Up @@ -428,7 +428,7 @@ def _critical_curves_from(mass_obj, grid, tc=None, rc=None):
"""
from autogalaxy.operate.lens_calc import LensCalc

if os.environ.get("PYAUTO_DISABLE_CRITICAL_CAUSTICS") == "1":
if os.environ.get("PYAUTO_FAST_PLOTS") == "1":
return [], []

if tc is None:
Expand Down
Loading