mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
swap sub with minus
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a744a465e6
commit
1680585827
2 changed files with 55 additions and 36 deletions
|
@ -44,7 +44,7 @@ namespace dd {
|
|||
|
||||
enum pdd_op {
|
||||
pdd_add_op = 2,
|
||||
pdd_sub_op = 3,
|
||||
pdd_minus_op = 3,
|
||||
pdd_mul_op = 4,
|
||||
pdd_reduce_op = 5,
|
||||
pdd_no_op = 6
|
||||
|
@ -148,6 +148,7 @@ namespace dd {
|
|||
|
||||
PDD apply(PDD arg1, PDD arg2, pdd_op op);
|
||||
PDD apply_rec(PDD arg1, PDD arg2, pdd_op op);
|
||||
PDD minus_rec(PDD p);
|
||||
|
||||
PDD reduce_on_match(PDD a, PDD b);
|
||||
bool lm_divides(PDD p, PDD q) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue