mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
release
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
aea4490fb2
commit
0ef26983fc
|
@ -602,7 +602,7 @@ stages:
|
|||
|
||||
# Enable on release:
|
||||
- job: PyPIPublish
|
||||
condition: eq(0,1)
|
||||
condition: eq(1,1)
|
||||
displayName: "Publish to PyPI"
|
||||
pool:
|
||||
vmImage: "ubuntu-latest"
|
||||
|
|
|
@ -262,7 +262,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()) {
|
||||
return args[0];
|
||||
|
|
Loading…
Reference in a new issue