Skip to content
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
263a652
Add module for list of strings
arjenmarkus Feb 3, 2021
90b06ff
Correct typo
arjenmarkus Feb 4, 2021
4157ed1
Merge remote-tracking branch 'upstream/master' into string-list-new
arjenmarkus Jun 3, 2021
e36f997
Merge branch 'master' into string-list-new
arjenmarkus Sep 18, 2022
024b078
Documentation and corrected source code for linked lists
arjenmarkus Sep 18, 2022
4379fb4
Correct subdirectory for examples
arjenmarkus Sep 18, 2022
3067b9a
Move the implementations of the linked_list modules to src
arjenmarkus Sep 18, 2022
3cf3d85
Use an include statement to get the auxiliary subroutine in
arjenmarkus Sep 18, 2022
edd20fd
Use an internal routine instead for print_list
arjenmarkus Sep 18, 2022
86d2fe4
Add a CMakeLists.txt for building the examples
arjenmarkus Sep 20, 2022
327c8c1
Rename the examples to avoid conflicts
arjenmarkus Sep 20, 2022
8f2f1fa
Define a new macro to take care of the include directory
arjenmarkus Sep 20, 2022
09b7266
Adjust the CMake and CI build set-ups
arjenmarkus Sep 25, 2022
af8dd68
Rename the include file
arjenmarkus Sep 25, 2022
fae33a4
Correct the test program
arjenmarkus Sep 25, 2022
41417f4
Update test_performance.f90
arjenmarkus Sep 25, 2022
b8c18ea
Create CMakeLists.txt file for performance test program
arjenmarkus Sep 25, 2022
ca684ae
Merge branch 'master' into string-list-new
jvdp1 Dec 25, 2023
5644454
Updated documentation and source code
arjenmarkus Dec 28, 2023
e23b1ea
Adjusting the examples and fixing an INTENT() error
arjenmarkus Dec 28, 2023
b5e41c1
Merge branch 'string-list-new' of https://github.com/arjenmarkus/stdl…
arjenmarkus Dec 28, 2023
ebb84b8
Add explicit include directory
arjenmarkus Dec 28, 2023
b310239
Incorporate the auxiliary routine directly
arjenmarkus Dec 28, 2023
220791a
Correct the name of the test programs
arjenmarkus Dec 28, 2023
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into string-list-new
  • Loading branch information
jvdp1 authored Dec 25, 2023
commit ca684ae9ee3d835e7b3039204141b4bdff0b4005
3 changes: 2 additions & 1 deletion ci/fpm-deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ find src -maxdepth 1 -iname "*.f90" -exec cp {} "$destdir/src/" \;
find test -name "test_*.f90" -exec cp {} "$destdir/test/" \;
find test -name "*.dat" -exec cp {} "$destdir/" \;
find example -name "example_*.f90" -exec cp {} "$destdir/example/" \;
find example -name "*.inc" -exec cp {} "$destdir/example/" \;
find example -name "*.dat" -exec cp {} "$destdir/" \;
find example -name "*.npy" -exec cp {} "$destdir/" \;

# Include additional files
cp "${include[@]}" "$destdir/"
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.