summaryrefslogtreecommitdiff
path: root/examples/hashsmt/sha1smt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hashsmt/sha1smt.cpp')
-rw-r--r--examples/hashsmt/sha1smt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/hashsmt/sha1smt.cpp b/examples/hashsmt/sha1smt.cpp
index 3a33a4bc2..97b79a7d0 100644
--- a/examples/hashsmt/sha1smt.cpp
+++ b/examples/hashsmt/sha1smt.cpp
@@ -46,7 +46,7 @@ int main(int argc, char* argv[]) {
output << DeclareFunctionCommand(ss.str(), cvc4input[i].getExpr(), cvc4input[i].getExpr().getType()) << endl;
// Ouput the solution also
- BoolExpr solution = (cvc4input[i] == hashsmt::cvc4_uchar8(msg.c_str()[i]));
+ Expr solution = (cvc4input[i] == hashsmt::cvc4_uchar8(msg.c_str()[i]));
output << "; " << AssertCommand(solution) << endl;
}
@@ -65,9 +65,9 @@ int main(int argc, char* argv[]) {
sha1encoder.get_digest(sha1digest);
// Create the assertion
- BoolExpr assertion;
+ Expr assertion;
for (unsigned i = 0; i < 5; ++ i) {
- BoolExpr conjunct = (cvc4digest[i] == hashsmt::cvc4_uint32(sha1digest[i]));
+ Expr conjunct = (cvc4digest[i] == hashsmt::cvc4_uint32(sha1digest[i]));
if (i > 0) {
assertion = assertion.andExpr(conjunct);
} else {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback