#!/bin/sh
if test "x${NRNHOME}" = "x" ; then
    NRNHOME="/local1/.local/miniconda3/envs/bmtk-py38/lib/python3.8/site-packages/neuron/.data"
fi
if test "${NEURONHOME}" = "" ; then
    NEURONHOME=${NRNHOME}/share/nrn
    export NEURONHOME
fi
if test "x${NRNBIN}" = "x" ; then
    NRNBIN="/local1/.local/miniconda3/envs/bmtk-py38/bin"
fi
if test "" = "yes" ; then
    NRNIV="${NRNBIN}/nrniv.app/Contents/MacOS/nrniv"
else
    NRNIV="${NRNBIN}/nrniv"
fi
"${NRNIV}" -dll "/local1/workspace/scratch/vnd_on_off/components/mechanisms/x86_64/.libs/libnrnmech.so" "$@"
