Skip to content

Commit

Permalink
fix includes
Browse files Browse the repository at this point in the history
  • Loading branch information
balos1 committed Jan 21, 2025
1 parent 9ab47c9 commit 84da95d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/arkode/C_serial/ark_lotka_volterra_ASA.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

#include <nvector/nvector_manyvector.h>
#include <nvector/nvector_serial.h>
#include <sunadjointcheckpointscheme/sunadjoint_checkpointscheme_fixed.h>
#include <sunadjointcheckpointscheme/sunadjointcheckpointscheme_fixed.h>
#include <sundials/sundials_adjointstepper.h>
#include <sunmatrix/sunmatrix_dense.h>
#include <sunmemory/sunmemory_system.h>
Expand Down
2 changes: 1 addition & 1 deletion src/arkode/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ sundials_add_library(
INCLUDE_SUBDIR arkode
LINK_LIBRARIES PUBLIC sundials_core
OBJECT_LIBRARIES
sundials_adjoint_obj
sundials_sunmemsys_obj
sundials_nvecserial_obj
sundials_nvecmanyvector_obj
Expand All @@ -99,6 +98,7 @@ sundials_add_library(
sundials_sunlinsolpcg_obj
sundials_sunnonlinsolnewton_obj
sundials_sunnonlinsolfixedpoint_obj
sundials_adjointcheckpointscheme_fixed_obj
OUTPUT_NAME sundials_arkode
VERSION ${arkodelib_VERSION}
SOVERSION ${arkodelib_SOVERSION})
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests/arkode/CXX_serial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ foreach(test_tuple ${unit_tests})
sundials_sunadaptcontrollerimexgus_obj
sundials_sunadaptcontrollersoderlind_obj
sundials_sunadaptcontrollermrihtol_obj
sundials_adjoint_obj
sundials_adjointcheckpointscheme_fixed_obj
${EXE_EXTRA_LINK_LIBS})

# Tell CMake that we depend on the ARKODE library since it does not pick
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests/arkode/CXX_serial/ark_test_adjoint_ark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include <nvector/nvector_manyvector.h>
#include <nvector/nvector_serial.h>
#include <sunadjointcheckpointscheme/sunadjoint_checkpointscheme_fixed.h>
#include <sunadjointcheckpointscheme/sunadjointcheckpointscheme_fixed.h>
#include <sundials/sundials_adjointstepper.h>
#include <sunmatrix/sunmatrix_dense.h>
#include <sunmemory/sunmemory_system.h>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests/arkode/CXX_serial/ark_test_adjoint_erk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include <nvector/nvector_manyvector.h>
#include <nvector/nvector_serial.h>
#include <sunadjointcheckpointscheme/sunadjoint_checkpointscheme_fixed.h>
#include <sunadjointcheckpointscheme/sunadjointcheckpointscheme_fixed.h>
#include <sundials/sundials_adjointstepper.h>
#include <sunmatrix/sunmatrix_dense.h>
#include <sunmemory/sunmemory_system.h>
Expand Down
2 changes: 1 addition & 1 deletion test/unit_tests/arkode/C_serial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ foreach(test_tuple ${ARKODE_unit_tests})
sundials_sunnonlinsolnewton_obj
sundials_sunadaptcontrollerimexgus_obj
sundials_sunadaptcontrollersoderlind_obj
sundials_adjoint_obj
sundials_adjointcheckpointscheme_fixed_obj
${EXE_EXTRA_LINK_LIBS})

# Tell CMake that we depend on the ARKODE library since it does not pick
Expand Down

0 comments on commit 84da95d

Please sign in to comment.