Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Feb 1, 2025
1 parent aea4490 commit 0ef2698
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion src/tactic/arith/lia2card_tactic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ class lia2card_tactic : public tactic {

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()) {
Expand Down

0 comments on commit 0ef2698

Please sign in to comment.