3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00

Forgot univariate shl

This commit is contained in:
Jakob Rath 2022-11-30 11:38:16 +01:00
parent 4026ac9427
commit 7febcd47ec

View file

@ -375,6 +375,9 @@ namespace polysat {
case code::lshr_op:
us.add_lshr(p_coeff, q_coeff, r_coeff, !is_positive, dep);
break;
case code::shl_op:
us.add_shl(p_coeff, q_coeff, r_coeff, !is_positive, dep);
break;
case code::and_op:
us.add_and(p_coeff, q_coeff, r_coeff, !is_positive, dep);
break;