summaryrefslogtreecommitdiff
path: root/examples/api/sygus-inv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/api/sygus-inv.cpp')
-rw-r--r--examples/api/sygus-inv.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/api/sygus-inv.cpp b/examples/api/sygus-inv.cpp
index 710265113..d57d9be4e 100644
--- a/examples/api/sygus-inv.cpp
+++ b/examples/api/sygus-inv.cpp
@@ -53,9 +53,9 @@ int main()
Sort integer = slv.getIntegerSort();
Sort boolean = slv.getBooleanSort();
- Term zero = slv.mkReal(0);
- Term one = slv.mkReal(1);
- Term ten = slv.mkReal(10);
+ Term zero = slv.mkInteger(0);
+ Term one = slv.mkInteger(1);
+ Term ten = slv.mkInteger(10);
// declare input variables for functions
Term x = slv.mkVar(integer, "x");
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback