https://github.com/pou036/redback
Raw File
Tip revision: 7341144b0e5515c4e3afe9f89394a9f1f4eb52d2 authored by mustafasari87 on 31 May 2022, 06:07:53 UTC
Added input files to reproduce redback results from Sari et al 2022 in GJI (fig.5 & 6)
Tip revision: 7341144
run_tests
#!/bin/bash

APPLICATION_NAME=redback
# If $METHOD is not set, use opt
if [ -z $METHOD ]; then
  export METHOD=opt
fi

if [ -e ./unit/$APPLICATION_NAME-unit-$METHOD ]
then
  ./unit/$APPLICATION_NAME-unit-$METHOD
elif [ -e ./$APPLICATION_NAME-unit-$METHOD ]
then
  ./$APPLICATION_NAME-unit-$METHOD
else
  echo "Executable missing!"
  exit 1
fi
back to top