https://github.com/epiqc/ScaffCC
Revision a6a216d6fd4e1e79f8c658bb27fd3a3a67a1834a authored by Yipeng Huang on 11 July 2018, 16:25:45 UTC, committed by Yipeng Huang on 11 July 2018, 16:25:45 UTC
Needed to get Grover's search benchmark to run on QX Simulator.
1 parent e3856c1
Raw File
Tip revision: a6a216d6fd4e1e79f8c658bb27fd3a3a67a1834a authored by Yipeng Huang on 11 July 2018, 16:25:45 UTC
Fixing translation from flat QASM to QX Simulator input.
Tip revision: a6a216d
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