mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
fix bug masked by default configuration
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1c3f715e26
commit
0f83e7a251
|
@ -118,7 +118,7 @@ public:
|
||||||
|
|
||||||
void mk_eq(expr * arg1, expr * arg2, expr_ref & result) {
|
void mk_eq(expr * arg1, expr * arg2, expr_ref & result) {
|
||||||
if (mk_eq_core(arg1, arg2, result) == BR_FAILED)
|
if (mk_eq_core(arg1, arg2, result) == BR_FAILED)
|
||||||
result = m_util.mk_le(arg1, arg2);
|
result = m_util.mk_eq(arg1, arg2);
|
||||||
}
|
}
|
||||||
void mk_le(expr * arg1, expr * arg2, expr_ref & result) {
|
void mk_le(expr * arg1, expr * arg2, expr_ref & result) {
|
||||||
if (mk_le_core(arg1, arg2, result) == BR_FAILED)
|
if (mk_le_core(arg1, arg2, result) == BR_FAILED)
|
||||||
|
|
Loading…
Reference in a new issue