mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
fix build warnigs with && vs ||, tuning seq
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
643999860d
commit
0c2334417c
5 changed files with 362 additions and 152 deletions
|
@ -4072,8 +4072,7 @@ namespace smt {
|
|||
// the theories of (array int int) and (array (array int int) int).
|
||||
// Remark: The inconsistency is not going to be detected if they are
|
||||
// not marked as shared.
|
||||
bool result = get_theory(th_id)->is_shared(l->get_th_var());
|
||||
return result;
|
||||
return get_theory(th_id)->is_shared(l->get_th_var());
|
||||
}
|
||||
default:
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue