Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove some old sparse Jacobian stuff from the build system #3035

Merged
merged 1 commit into from
Feb 14, 2025
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
10 changes: 2 additions & 8 deletions Docs/source/build_system.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,8 @@ Microphysics Parameters

.. index:: USE_REACT, general_null, GENERAL_NET_INPUTS, NETWORK_DIR, INTEGRATOR_DIR

* ``USE_REACT_SPARSE_JACOBIAN``

* ``USE_SPARSE_STOP_ON_OOB``

* ``EOS_DIR``: the equation of state to use. This will be a subdirectory under the
Microphysics repo.
* ``EOS_DIR``: the equation of state to use. This will be a subdirectory under the
Microphysics repo.

.. index:: EOS_DIR

Expand Down Expand Up @@ -275,5 +271,3 @@ This is the current build system process.

For all of this to work, we need the ``tmp_build_dir/s`` directory to
be first in the vpath, so our modified sources are found and used.


11 changes: 0 additions & 11 deletions Exec/Make.Castro
Original file line number Diff line number Diff line change
Expand Up @@ -201,17 +201,6 @@ ifeq ($(USE_REACT), TRUE)
DEFINES += -DREACTIONS
endif

ifeq ($(USE_REACT_SPARSE_JACOBIAN), TRUE)
DEFINES += -DREACT_SPARSE_JACOBIAN

# The following is sometimes useful to turn on for debugging sparse J indices
# (if a get/set/scale is called with (row, col) not in the sparse J, stop)
# Otherwise, set/scale do nothing, and get returns 0.
ifeq ($(USE_SPARSE_STOP_ON_OOB), TRUE)
DEFINES += -DSPARSE_STOP_ON_OOB
endif
endif

ifeq ($(USE_SIMPLIFIED_SDC), TRUE)
DEFINES += -DSDC_EVOLVE_ENERGY
endif
Expand Down
Loading