https://github.com/epiqc/ScaffCC
Revision 67b628d9996416507881b45fcebb8415ba5b2ea9 authored by EPiQC on 17 June 2018, 20:41:54 UTC, committed by GitHub on 17 June 2018, 20:41:54 UTC
Fix the order of CNOT in BWT.
2 parent s 3fc47fa + afb4474
Raw File
Tip revision: 67b628d9996416507881b45fcebb8415ba5b2ea9 authored by EPiQC on 17 June 2018, 20:41:54 UTC
Merge pull request #20 from ryanxw/master
Tip revision: 67b628d
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