mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 18:06:15 +00:00
Forgot univariate shl
This commit is contained in:
parent
4026ac9427
commit
7febcd47ec
1 changed files with 3 additions and 0 deletions
|
@ -375,6 +375,9 @@ namespace polysat {
|
||||||
case code::lshr_op:
|
case code::lshr_op:
|
||||||
us.add_lshr(p_coeff, q_coeff, r_coeff, !is_positive, dep);
|
us.add_lshr(p_coeff, q_coeff, r_coeff, !is_positive, dep);
|
||||||
break;
|
break;
|
||||||
|
case code::shl_op:
|
||||||
|
us.add_shl(p_coeff, q_coeff, r_coeff, !is_positive, dep);
|
||||||
|
break;
|
||||||
case code::and_op:
|
case code::and_op:
|
||||||
us.add_and(p_coeff, q_coeff, r_coeff, !is_positive, dep);
|
us.add_and(p_coeff, q_coeff, r_coeff, !is_positive, dep);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue