mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
update name of artifact
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
40761ebb0d
commit
36ed1ffac2
|
@ -337,7 +337,7 @@ stages:
|
|||
- task: PublishPipelineArtifact@1
|
||||
inputs:
|
||||
targetPath: $(Build.ArtifactStagingDirectory)
|
||||
artifactName: 'NuGet'
|
||||
artifactName: 'NuGet32'
|
||||
|
||||
|
||||
- job: Python
|
||||
|
@ -419,6 +419,11 @@ stages:
|
|||
inputs:
|
||||
artifactName: 'NuGet'
|
||||
targetPath: tmp
|
||||
- task: DownloadPipelineArtifact@2
|
||||
displayName: "Download NuGet32"
|
||||
inputs:
|
||||
artifactName: 'NuGet32'
|
||||
targetPath: tmp
|
||||
- task: GitHubRelease@0
|
||||
inputs:
|
||||
gitHubConnection: Z3GitHub
|
||||
|
|
|
@ -402,17 +402,15 @@ bool static_features::pre_process(expr * e, bool form_ctx, bool or_and_ctx, bool
|
|||
if (is_marked_post(e))
|
||||
return true;
|
||||
|
||||
if (is_marked_pre(e))
|
||||
return true;
|
||||
|
||||
if (is_var(e)) {
|
||||
mark_pre(e);
|
||||
mark_post(e);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (is_marked_pre(e)) {
|
||||
m_num_sharing++;
|
||||
return true;
|
||||
}
|
||||
|
||||
mark_pre(e);
|
||||
|
||||
update_core(e);
|
||||
|
@ -430,7 +428,9 @@ bool static_features::pre_process(expr * e, bool form_ctx, bool or_and_ctx, bool
|
|||
bool all_processed = true;
|
||||
for (expr* arg : *to_app(e)) {
|
||||
m.is_not(arg, arg);
|
||||
if (!is_marked_post(arg)) {
|
||||
if (is_marked_post(arg))
|
||||
++m_num_sharing;
|
||||
else {
|
||||
add_process(arg, form_ctx_new, or_and_ctx_new, ite_ctx_new);
|
||||
all_processed = false;
|
||||
}
|
||||
|
@ -537,6 +537,7 @@ void static_features::process_all() {
|
|||
auto const& [e, form, or_and, ite] = m_to_process.back();
|
||||
if (is_marked_post(e)) {
|
||||
m_to_process.pop_back();
|
||||
++m_num_sharing;
|
||||
continue;
|
||||
}
|
||||
if (!pre_process(e, form, or_and, ite))
|
||||
|
|
Loading…
Reference in a new issue