We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4b59a commit 39c7040Copy full SHA for 39c7040
src/solvers/smt2_incremental/convert_expr_to_smt.cpp
@@ -353,6 +353,11 @@ static smt_termt convert_expr_to_smt(
353
const concatenation_exprt &concatenation,
354
const sub_expression_mapt &converted)
355
{
356
+ if(operands_are_of_type<bitvector_typet>(concatenation))
357
+ {
358
+ return convert_multiary_operator_to_terms(
359
+ concatenation, converted, smt_bit_vector_theoryt::concat);
360
+ }
361
UNIMPLEMENTED_FEATURE(
362
"Generation of SMT formula for concatenation expression: " +
363
concatenation.pretty());
0 commit comments