summaryrefslogtreecommitdiff
path: root/examples/api/python/sygus-inv.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/api/python/sygus-inv.py')
-rw-r--r--examples/api/python/sygus-inv.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/api/python/sygus-inv.py b/examples/api/python/sygus-inv.py
index f71091371..4e7465382 100644
--- a/examples/api/python/sygus-inv.py
+++ b/examples/api/python/sygus-inv.py
@@ -30,9 +30,9 @@ if __name__ == "__main__":
integer = slv.getIntegerSort()
boolean = slv.getBooleanSort()
- zero = slv.mkReal(0)
- one = slv.mkReal(1)
- ten = slv.mkReal(10)
+ zero = slv.mkInteger(0)
+ one = slv.mkInteger(1)
+ ten = slv.mkInteger(10)
# declare input variables for functions
x = slv.mkVar(integer, "x")
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback