3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-01-31 17:31:37 -08:00
parent aea4490fb2
commit 0ef26983fc
2 changed files with 1 additions and 2 deletions

View file

@ -261,7 +261,6 @@ public:
expr* mk_ge(unsigned sz, rational const* weights, expr* const* args, rational const& w) {
if (sz == 0) {
return w.is_pos()?m.mk_false():m.mk_true();
return w.is_pos() ? m.mk_false() : m.mk_true();
}
if (sz == 1 && weights[0].is_one() && w.is_one()) {