3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-12 10:06:23 +00:00

Bug/Performance fixes

Added argument to harvest non-primitive membership constraint benchmarks
This commit is contained in:
CEisenhofer 2026-07-01 14:47:36 +02:00
parent f5baba1068
commit 1f448a10a3
9 changed files with 314 additions and 13 deletions

View file

@ -36,9 +36,9 @@ COMMON_ARGS = ["model_validate=true"]
# All three configurations are always run.
SOLVERS = {
"nseq_md": ["smt.string_solver=nseq", "smt.nseq.parikh=false",
"smt.nseq.regex_factorization_threshold=100", "smt.nseq.regex_factorization_eager=true"],
"nseq_pa": ["smt.string_solver=nseq", "smt.nseq.parikh=false",
"nseq_md": ["smt.string_solver=nseq", "smt.nseq.parikh=false", "smt.nseq.eager=false",
"smt.nseq.regex_factorization_threshold=10000000", "smt.nseq.regex_factorization_eager=true"],
"nseq_pa": ["smt.string_solver=nseq", "smt.nseq.parikh=false", "smt.nseq.eager=false",
"smt.nseq.regex_factorization_threshold=0", "smt.nseq.regex_factorization_eager=false"],
"seq": ["smt.string_solver=seq"],
}