mirror of
https://github.com/Z3Prover/z3
synced 2025-08-20 18:20:22 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fc4260e018
commit
20cfbcd66b
6 changed files with 51 additions and 5 deletions
|
@ -328,6 +328,9 @@ namespace smt {
|
|||
// Ignore equality if variables are already known to be equal.
|
||||
if (is_equal(x, y))
|
||||
return;
|
||||
if (get_manager().get_sort(var2expr(x)) != get_manager().get_sort(var2expr(y))) {
|
||||
return;
|
||||
}
|
||||
context & ctx = get_context();
|
||||
region & r = ctx.get_region();
|
||||
enode * _x = get_enode(x);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue