Skip to content

Commit

Permalink
debug compile time config macro for DG in reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
jbreue16 committed Aug 15, 2023
1 parent 940f211 commit 10bcf8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/libcadet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ set (LIBCADET_NONLINALG_SOURCES
${CMAKE_SOURCE_DIR}/src/libcadet/nonlin/CompositeSolver.cpp
${CMAKE_SOURCE_DIR}/src/libcadet/nonlin/Solver.cpp
)
if (ENABLE_DG)
list(APPEND LIBCADET_NONLINALG_SOURCES ${CMAKE_SOURCE_DIR}/src/libcadet/linalg/BandedEigenSparseRowIterator.hpp)
endif()

if (ENABLE_GRM_2D)
set(LIBCADET_NONLINALG_SPARSE_SOURCES)
Expand Down
1 change: 1 addition & 0 deletions src/libcadet/model/ReactionModel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <unordered_map>

#include "CompileTimeConfig.hpp"
#include "cadet/ParameterProvider.hpp"
#include "cadet/ParameterId.hpp"
#include "linalg/DenseMatrix.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/libcadet/model/reaction/DummyReaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

#include "model/ReactionModel.hpp"
#include "ParamIdUtil.hpp"
#include "CompileTimeConfig.hpp"

namespace cadet
{
Expand Down

0 comments on commit 10bcf8d

Please sign in to comment.