https://github.com/epiqc/ScaffCC
Revision acf1e151cf72d59fe82008f3e3296e6793648333 authored by Yipeng Huang on 11 September 2018, 15:35:37 UTC, committed by Yipeng Huang on 11 September 2018, 15:35:37 UTC
1 parent 1eaa900
Raw File
Tip revision: acf1e151cf72d59fe82008f3e3296e6793648333 authored by Yipeng Huang on 11 September 2018, 15:35:37 UTC
Example of factoring 15 by finding 7^4 mod 15 = 1
Tip revision: acf1e15
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