setting up param tuning experiments for QF_RDL example#8020
Merged
NikolajBjorner merged 106 commits intoZ3Prover:parallelfrom Nov 13, 2025
Merged
setting up param tuning experiments for QF_RDL example#8020NikolajBjorner merged 106 commits intoZ3Prover:parallelfrom
NikolajBjorner merged 106 commits intoZ3Prover:parallelfrom
Conversation
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…olve_upwards into once function
… different threads don't interfere (Z3Prover#7963) * Initial plan * Add mutex to warning.cpp for thread safety Co-authored-by: NikolajBjorner <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: NikolajBjorner <[email protected]>
Removed unused variable 'first' from the function.
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Nikolaj Bjorner <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
…vant solver statistics fields from the statistics obj
…heir params according ly
…directly from the context
Signed-off-by: Nikolaj Bjorner <[email protected]>
Signed-off-by: Lev Nachmanson <[email protected]>
…e the param tuning context without segfault
Signed-off-by: Lev Nachmanson <[email protected]>
…uners or it spins infinitely. added flag for this. but now there is segfault on the probe_ctx.check() call
* Initial plan * Add C API and Java bindings for str.replace_all, str.replace_re, str.replace_all_re Co-authored-by: NikolajBjorner <[email protected]> * Add test for new Java string replace operations Co-authored-by: NikolajBjorner <[email protected]> * Remove author field from test file header Co-authored-by: NikolajBjorner <[email protected]> * Delete examples/java/StringReplaceTest.java --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: NikolajBjorner <[email protected]> Co-authored-by: Nikolaj Bjorner <[email protected]>
…bprocesses ffor nested ctx checks
Signed-off-by: Nikolaj Bjorner <[email protected]>
…param tuning experiments on QF_RDL. set up this logic in the smt_parallel files
…ew user param to toggle for only running param tuning thread without parallel solving (just to test if it's finding good settings)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
the only files I actually modified here are:
added: param_sweep_deterministic.sh (to exhaustively test the entire param space)
added: param_sweep_random.sh (to test some random subset of the param space)
modified: src/params/smt_parallel_params.pyg
modified: src/smt/smt_parallel.cpp
modified: src/smt/smt_parallel.h
all other changed files are coming from a mandatory pull from the master branch that github made me do to submit this PR
I added QF_RDL and also added a script to filter for hard problems (>3s) in the polytest repo. the chosen test file for these experiments right now is ../../z3-poly-testing/inputs/QF_RDL/abz5_1200.smt2.
also, there is a small bugfix about param protocol iteration only running once (it's now in a loop)