From ae5ee4b07dc3d3c792e7fe7f382ff490dd28aca4 Mon Sep 17 00:00:00 2001 From: Mathias Preiner Date: Wed, 21 Apr 2021 10:21:34 -0700 Subject: Goodbye CVC4, hello cvc5! (#6371) This commits changes the build system to cvc5 and removes the remaining occurrences of CVC4. It further cleans up outdated/unused scripts in contrib/. --- examples/api/python/sygus-inv.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/api/python/sygus-inv.py') diff --git a/examples/api/python/sygus-inv.py b/examples/api/python/sygus-inv.py index 08a50ce63..0fa752b1e 100644 --- a/examples/api/python/sygus-inv.py +++ b/examples/api/python/sygus-inv.py @@ -16,11 +16,11 @@ # translation of sygus-inv.cpp . ## -import pycvc4 -from pycvc4 import kinds +import pycvc5 +from pycvc5 import kinds if __name__ == "__main__": - slv = pycvc4.Solver() + slv = pycvc5.Solver() # required options slv.setOption("lang", "sygus2") -- cgit v1.2.3