mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +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:
|
# Enable on release:
|
||||||
- job: PyPIPublish
|
- job: PyPIPublish
|
||||||
condition: eq(0,1)
|
condition: eq(1,1)
|
||||||
displayName: "Publish to PyPI"
|
displayName: "Publish to PyPI"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "ubuntu-latest"
|
vmImage: "ubuntu-latest"
|
||||||
|
|
|
@ -261,7 +261,6 @@ public:
|
||||||
|
|
||||||
expr* mk_ge(unsigned sz, rational const* weights, expr* const* args, rational const& w) {
|
expr* mk_ge(unsigned sz, rational const* weights, expr* const* args, rational const& w) {
|
||||||
if (sz == 0) {
|
if (sz == 0) {
|
||||||
return w.is_pos()?m.mk_false():m.mk_true();
|
|
||||||
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()) {
|
if (sz == 1 && weights[0].is_one() && w.is_one()) {
|
||||||
|
|
Loading…
Reference in a new issue