https://github.com/epiqc/ScaffCC
Revision 7bec85fe39c61f72472dc5a39942441993a8d0b6 authored by Yipeng Huang on 04 July 2018, 21:34:12 UTC, committed by Yipeng Huang on 04 July 2018, 21:34:12 UTC
Both Scaffold and QX simulator have the input convention of control, control, target
1 parent f74102b
Raw File
Tip revision: 7bec85fe39c61f72472dc5a39942441993a8d0b6 authored by Yipeng Huang on 04 July 2018, 21:34:12 UTC
Fixing CNOT and Toffoli input ordering for the script that generates QX simulator inputs.
Tip revision: 7bec85f
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