Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
88f3708
required sub-shell creation when executing build shell scripts
keiwanjamaly Jan 28, 2025
74db663
Added dummy template variable in for the LitimRegulator in regulators…
keiwanjamaly Jan 28, 2025
1425edb
Fixed failing debug build of spdlog
keiwanjamaly Feb 11, 2025
f857298
deleted, according to Mr. Sattler, this "ist längst nutzlos" :)
keiwanjamaly Feb 11, 2025
0977a99
Merge remote-tracking branch 'upstream/main'
keiwanjamaly Feb 14, 2025
d0df6a1
Merge remote-tracking branch 'upstream/main'
keiwanjamaly Feb 19, 2025
833df01
changes on dockerfile
keiwanjamaly Feb 23, 2025
d6dd276
added cmake build log in install dealii shell script
keiwanjamaly Feb 23, 2025
ac80f3a
added make build log in install dealii shell script
keiwanjamaly Feb 23, 2025
393d4d3
removed hidden console output for dealii build
keiwanjamaly Feb 23, 2025
2eaeb90
debug echo command for dockerfile
keiwanjamaly Feb 23, 2025
db9ee75
test dockerfile install path change
keiwanjamaly Feb 23, 2025
e57e3a0
forgot dollar sign
keiwanjamaly Feb 23, 2025
e7c63a2
some changes but nothing worked
keiwanjamaly Mar 5, 2025
6fe66b6
Merge remote-tracking branch 'upstream/main'
keiwanjamaly Mar 5, 2025
958fe33
fixed regulator documentation
keiwanjamaly Mar 21, 2025
8a594eb
enabled export for complex integral kernels
keiwanjamaly Mar 21, 2025
f97bc3d
replaces <cmath> riemann_zeta function with boost::math::zeta functio…
keiwanjamaly Mar 21, 2025
9534298
updated gitignore
keiwanjamaly Mar 22, 2025
36c35b5
changed boost version
keiwanjamaly Mar 22, 2025
7375df9
Changed to a build with all boost libraries, since they are required …
keiwanjamaly Mar 23, 2025
4147c69
fixed bug from previous experiments
keiwanjamaly Mar 23, 2025
0393793
included full library to fix cmake discovery errors
keiwanjamaly Mar 23, 2025
0eb6050
implemented check, whether a logger exists before building it
keiwanjamaly May 27, 2025
f1bbd88
Merge remote-tracking branch 'upstream/main' into Fix-logger-reinitia…
keiwanjamaly May 27, 2025
84fa51e
added .vscode to gitignore
keiwanjamaly May 28, 2025
270ce18
Merge remote-tracking branch 'origin/Fix-logger-reinitialization'
keiwanjamaly May 28, 2025
8c0346c
hotfix of stricter template rules introduces in Clang 17
keiwanjamaly May 28, 2025
8d49ab0
fixed quadrature segmentation fault on CLANG, when executing std::pre…
keiwanjamaly May 28, 2025
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
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
external/sundials_build
external/oneTBB_build
external/logs
external/kokkos_build
external/dealii_build
external/boost_build
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ profile/
*.log
.cache/
.venv/
.vscode/
build_debug
build_release
build_test
build_test_coverage
build
.vscode

## remove editor configurat
.idea

## remove builds from Applications
Applications/*/build
Expand Down Expand Up @@ -275,4 +285,4 @@ TSWLatexianTemp*

# standalone packages
*.sta
*.DS_STORE
*.DS_STORE
1 change: 0 additions & 1 deletion DiFfRG/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ endif()

add_subdirectory(${CMAKE_SOURCE_DIR}/cmake)
include(${CMAKE_SOURCE_DIR}/cmake/setup_build_system.cmake)
include(${CMAKE_SOURCE_DIR}/cmake/setup_targets.cmake)

# ##############################################################################
# DiFfRG library and models
Expand Down
Loading