summaryrefslogtreecommitdiff
path: root/src/util/pseudoboolean.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-11-15 01:32:27 +0000
committerMorgan Deters <mdeters@gmail.com>2011-11-15 01:32:27 +0000
commit15193d5207679b24cd2f310f71c9428971564b53 (patch)
tree65407ed8821be30b91ae898a93f1b78902cc37c4 /src/util/pseudoboolean.cpp
parent3d3d6490f46f9dd7b48b02eed03a66086e32ded1 (diff)
additional minor changes to get python binding on better footing
Diffstat (limited to 'src/util/pseudoboolean.cpp')
-rw-r--r--src/util/pseudoboolean.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/pseudoboolean.cpp b/src/util/pseudoboolean.cpp
index 3fa7a774e..655cd8277 100644
--- a/src/util/pseudoboolean.cpp
+++ b/src/util/pseudoboolean.cpp
@@ -29,7 +29,7 @@ Pseudoboolean::Pseudoboolean(int i) {
d_value = (i == 1);
}
-Pseudoboolean::Pseudoboolean(const Integer& i) {
+Pseudoboolean::Pseudoboolean(const CVC4::Integer& i) {
CheckArgument(i == 0 || i == 1, i);
d_value = (i == 1);
}
@@ -42,7 +42,7 @@ Pseudoboolean::operator int() const {
return d_value ? 1 : 0;
}
-Pseudoboolean::operator Integer() const {
+Pseudoboolean::operator CVC4::Integer() const {
return d_value ? 1 : 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback