mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
try to copy artifacts
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
09328d5bec
commit
8d9a631c5d
|
@ -69,6 +69,9 @@ jobs:
|
|||
inputs:
|
||||
artifactName: 'Ubuntu'
|
||||
targetPath: tmp
|
||||
- task: CopyFiles@2
|
||||
sourceFolder: $(Build.ArtifactStagingDirectory)
|
||||
targetFilder: tmp
|
||||
# TBD: build NuGet package
|
||||
# TBD: this script should build a specific pre-specified tag
|
||||
- task: GitHubRelease@0
|
||||
|
|
|
@ -297,7 +297,7 @@ struct purify_arith_proc {
|
|||
EQ(u().mk_mul(y, k), x)));
|
||||
push_cnstr_pr(result_pr);
|
||||
rational r;
|
||||
if (complete() && (!u().is_numeral(y, r) || r.is_zero())) {
|
||||
if (complete() && (!u().is_numeral(y, r) || !r.is_zero())) {
|
||||
// y != 0 \/ k = div-0(x)
|
||||
push_cnstr(OR(NOT(EQ(y, mk_real_zero())),
|
||||
EQ(k, u().mk_div(x, mk_real_zero()))));
|
||||
|
|
Loading…
Reference in a new issue