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
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20260417.0
0.20260420.0
2 changes: 1 addition & 1 deletion cmake/common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ function(configure_target TARGET)
NO_CMAKE_SYSTEM_PATH)
endif()

target_include_directories(${TARGET} PRIVATE
target_include_directories(${TARGET} SYSTEM PRIVATE
$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/src/3rdparty/${AVAILABLE_PACKAGE}>
$<BUILD_INTERFACE:${${AVAILABLE_PACKAGE_UC}_INCLUDE_DIR}>)

Comment thread
agarny marked this conversation as resolved.
Expand Down
17 changes: 0 additions & 17 deletions src/3rdparty/LLVMClang/clangbegin.h

This file was deleted.

17 changes: 0 additions & 17 deletions src/3rdparty/LLVMClang/clangend.h

This file was deleted.

77 changes: 0 additions & 77 deletions src/3rdparty/LLVMClang/llvmbegin.h

This file was deleted.

23 changes: 0 additions & 23 deletions src/3rdparty/LLVMClang/llvmend.h

This file was deleted.

20 changes: 0 additions & 20 deletions src/3rdparty/SUNDIALS/sundialsbegin.h

This file was deleted.

19 changes: 0 additions & 19 deletions src/3rdparty/SUNDIALS/sundialsend.h

This file was deleted.

20 changes: 0 additions & 20 deletions src/3rdparty/libCOMBINE/libcombinebegin.h

This file was deleted.

19 changes: 0 additions & 19 deletions src/3rdparty/libCOMBINE/libcombineend.h

This file was deleted.

20 changes: 0 additions & 20 deletions src/3rdparty/libSEDML/libsedmlbegin.h

This file was deleted.

19 changes: 0 additions & 19 deletions src/3rdparty/libSEDML/libsedmlend.h

This file was deleted.

5 changes: 0 additions & 5 deletions src/misc/compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ limitations under the License.

#include "compiler_p.h"

#include "clangbegin.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/CodeGen/CodeGenAction.h"
#include "clang/Driver/Compilation.h"
Expand All @@ -25,17 +24,13 @@ limitations under the License.
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/TextDiagnosticPrinter.h"
#include "clang/Lex/PreprocessorOptions.h"
#include "clangend.h"

#include "llvmbegin.h"
#include "llvm/IR/LegacyPassManager.h"
#include "llvm/IR/Module.h"
#include "llvm/MC/TargetRegistry.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/TargetSelect.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm-c/Core.h"
#include "llvmend.h"

#include <random>
#include <sstream>
Expand Down
2 changes: 0 additions & 2 deletions src/misc/compiler_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ limitations under the License.
#include "compiler.h"

#ifndef __EMSCRIPTEN__
# include "llvmbegin.h"
# include "llvm/ExecutionEngine/Orc/LLJIT.h"
# include "llvmend.h"
#endif

namespace libOpenCOR {
Expand Down
7 changes: 1 addition & 6 deletions src/solver/solvercvode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,17 @@ limitations under the License.

#include "solvercvode_p.h"

#include "libsedmlbegin.h"
#include "sedml/SedAlgorithm.h"
#include "libsedmlend.h"

#include "sundialsbegin.h"
#include "cvodes/cvodes.h"
#include "cvodes/cvodes_bandpre.h"
#include "cvodes/cvodes_diag.h"
#include "nvector/nvector_serial.h"
#include "sedml/SedAlgorithm.h"
#include "sunlinsol/sunlinsol_band.h"
#include "sunlinsol/sunlinsol_dense.h"
#include "sunlinsol/sunlinsol_spbcgs.h"
#include "sunlinsol/sunlinsol_spgmr.h"
#include "sunlinsol/sunlinsol_sptfqmr.h"
#include "sunnonlinsol/sunnonlinsol_fixedpoint.h"
#include "sundialsend.h"

#include <utility>

Expand Down
2 changes: 0 additions & 2 deletions src/solver/solvercvode_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ limitations under the License.

#include "libopencor/solvercvode.h"

#include "sundialsbegin.h"
#include "sundials/sundials_linearsolver.h"
#include "sundials/sundials_nonlinearsolver.h"
#include "sundialsend.h"

namespace libOpenCOR {

Expand Down
7 changes: 1 addition & 6 deletions src/solver/solverkinsol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,14 @@ limitations under the License.

#include "solverkinsol_p.h"

#include "libsedmlbegin.h"
#include "sedml/SedAlgorithm.h"
#include "libsedmlend.h"

#include "sundialsbegin.h"
#include "kinsol/kinsol.h"
#include "nvector/nvector_serial.h"
#include "sedml/SedAlgorithm.h"
#include "sunlinsol/sunlinsol_band.h"
#include "sunlinsol/sunlinsol_dense.h"
#include "sunlinsol/sunlinsol_spbcgs.h"
#include "sunlinsol/sunlinsol_spgmr.h"
#include "sunlinsol/sunlinsol_sptfqmr.h"
#include "sundialsend.h"

#include <utility>

Expand Down
2 changes: 0 additions & 2 deletions src/solver/solverodefixedstep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ limitations under the License.

#include "solverodefixedstep_p.h"

#include "libsedmlbegin.h"
#include "sedml/SedAlgorithm.h"
#include "libsedmlend.h"

namespace libOpenCOR {

Expand Down
2 changes: 0 additions & 2 deletions src/support/combine/combinearchive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ limitations under the License.

#include "utils.h"

#include "libcombinebegin.h"
#include "combine/combinearchive.h"
#include "omex/CaContent.h"
#include "libcombineend.h"

namespace libOpenCOR {

Expand Down
2 changes: 0 additions & 2 deletions src/support/sedml/sedmlfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,11 @@ limitations under the License.
#include "libopencor/solverkinsol.h"
#include "libopencor/solversecondorderrungekutta.h"

#include "libsedmlbegin.h"
#include "sedml/SedChangeAttribute.h"
#include "sedml/SedDocument.h"
#include "sedml/SedReader.h"
#include "sedml/SedOneStep.h"
#include "sedml/SedUniformTimeCourse.h"
#include "libsedmlend.h"

#include <ranges>

Expand Down
Loading
Loading