https://github.com/epiqc/ScaffCC
Revision 6afac69e0832f960fa5fcb8fa4af02c5b381a4ab authored by Andrew Litteken on 23 September 2021, 20:24:49 UTC, committed by GitHub on 23 September 2021, 20:24:49 UTC
Allow Fredkin gates to be fully decomposed with -T is provided
2 parent s ab84a7d + 646c942
Raw File
Tip revision: 6afac69e0832f960fa5fcb8fa4af02c5b381a4ab authored by Andrew Litteken on 23 September 2021, 20:24:49 UTC
Merge pull request #48 from AndrewLitteken/master
Tip revision: 6afac69
source_me
/bin/bash rkqc > /dev/null 2> /dev/null

if [ "$?" == "0" ]
then
  echo
  echo "It looks like \"rkqc\" is already in your \$PATH (possibly from a previous installation)."
  echo "Remove the old \"rkqc\" executable from your \$PATH, then source \"source_me\" one more time."
  echo
  echo
else
  export RKQC_PATH=$(pwd)/rkqc
  export PATH=$PATH:$RKQC_PATH
fi

back to top