You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 0. Prepare
pip3 install virtualenv
mkdir clever
virtualenv clever
cd clever
source bin/activate
# 1. Clone repo
git clone https://github.com/Client-Specific-Equivalence-Checker/CLEVER.git
cd CLEVER
# 2. Install PySMTcd deps/pysmt
# (may need) sudo apt-get install python3-setuptools
python3 setup.py install
cd ../..
# 3. Install Z3 with Python bindings
pysmt-install --z3
# 4. Obtain a string to update your PYTHONPATH and then update it # (you can just paste the string into your shell)
pysmt-install --env
# 5. Check that z3 was correctly installed
pysmt-install --check
# It should show# z3 True (4.5.1)# If you see# "z3 False (None)"# then step 3 failed. Follow the isntructions at https://github.com/Z3Prover/z3 to install z3 with python3 bindings# If you see "Not in Python's path!" then step 4 was not completed correctly# 6. Install PyExZ3cd deps/PyExZ3
python3 setup.py install
cd ../..
# 7. Install CLEVERcd src
python3 setup.py install
cd ..
# 8. Use. See below.# 9. Deactiviate Virtualenv
deactivate