mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
parent
65b2037ba2
commit
c6b4641050
8 changed files with 36 additions and 22 deletions
|
@ -60,13 +60,13 @@ class propagate_values_tactic : public tactic {
|
|||
if (m.is_value(arg1) && is_shared(arg2)) {
|
||||
lhs = arg2;
|
||||
value = arg1;
|
||||
inverted = false;
|
||||
inverted = true;
|
||||
return true;
|
||||
}
|
||||
if (m.is_value(arg2) && is_shared(arg1)) {
|
||||
lhs = arg1;
|
||||
value = arg2;
|
||||
inverted = true;
|
||||
inverted = false;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue