mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 13:06:05 +00:00
Add basic implementation of left shift
This commit is contained in:
parent
68707eefe7
commit
adc9f7abe4
7 changed files with 121 additions and 14 deletions
|
@ -330,6 +330,10 @@ namespace polysat {
|
|||
return mk_op_term(op_constraint::code::lshr_op, p, q);
|
||||
}
|
||||
|
||||
pdd constraint_manager::shl(pdd const& p, pdd const& q) {
|
||||
return mk_op_term(op_constraint::code::shl_op, p, q);
|
||||
}
|
||||
|
||||
pdd constraint_manager::band(pdd const& p, pdd const& q) {
|
||||
return mk_op_term(op_constraint::code::and_op, p, q);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue