Skip to content

Commit 8cb979e

Browse files
committed
SMT2 back-end: Bitwuzla does not support lambda expressions
Disable lambda expressions when producing formulae for Bitwuzla as it does not support these. Fixes: #8384
1 parent 82bbeb8 commit 8cb979e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/smt2/smt2_conv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ smt2_convt::smt2_convt(
9090
use_array_of_bool = true;
9191
use_as_const = true;
9292
use_check_sat_assuming = true;
93-
use_lambda_for_array = true;
93+
use_lambda_for_array = false;
9494
emit_set_logic = false;
9595
break;
9696

0 commit comments

Comments
 (0)