C++ solver part

This commit is contained in:
jakob.schratter 2026-01-26 16:16:12 +01:00
commit c9deacfd3c
4 changed files with 256 additions and 0 deletions

14
solid-cpp/run.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
set -e -u
. ../preCICE_tools/log.sh
exec > >(tee --append "$LOGFILE") 2>&1
solver=./ownSolver
if [ -f "${solver}" ]; then
${solver}
else
echo "Unable to locate the executable ${solver}. Have a look at the README for building instructions."
fi
close_log