C++ solver part
This commit is contained in:
parent
3f1b1a6d0f
commit
c9deacfd3c
4 changed files with 256 additions and 0 deletions
14
solid-cpp/run.sh
Executable file
14
solid-cpp/run.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue