Files
cvc5/examples/api/python/exceptions.py
Mathias Preiner e3cd4670a0 Update copyright header script to support CMake and Python files (#5067)
This PR updates the update-copyright.pl script to also update/add copyright headers to CMake specific files. It further fixes a small typo in the header.
2020-09-22 09:51:56 -07:00

58 lines
1.3 KiB
Python

#!/usr/bin/env python
#####################
## exceptions.py
## Top contributors (to current version):
## Andres Noetzli
## This file is part of the CVC4 project.
## Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
## in the top-level source directory and their institutional affiliations.
## All rights reserved. See the file COPYING in the top-level source
## directory for licensing information.
##
## Catching CVC4 exceptions with the legacy Python API.
##
## A simple demonstration of catching CVC4 execptions with the legacy Python
## API.
##
import pycvc4
from pycvc4 import kinds
import sys
def main():
slv = pycvc4.Solver()
slv.setOption("produce-models", "true")
# Setting an invalid option
try:
slv.setOption("non-existing", "true")
return 1
except:
pass
# Creating a term with an invalid type
try:
integer = slv.getIntegerSort()
x = slv.mkConst("x", integer)
invalidTerm = em.mkTerm(AND, x, x)
slv.checkSat(invalidTerm)
return 1
except:
pass
# Asking for a model after unsat result
try:
slv.checkSat(slv.mkBoolean(False))
slv.getModel()
return 1
except:
pass
return 0
if __name__ == '__main__':
sys.exit(main())