3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-27 19:08:49 +00:00

Copy elements from propagation queue before propagating them. The memory might get invalidated inbetween

This commit is contained in:
CEisenhofer 2026-06-26 11:08:54 +02:00
parent d2db79e1a7
commit ff7cbe9406
3 changed files with 18 additions and 8 deletions

View file

@ -38,7 +38,7 @@ COMMON_ARGS = ["model_validate=true"]
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=true",
"nseq_pa": ["smt.string_solver=nseq", "smt.nseq.parikh=false",
"smt.nseq.regex_factorization_threshold=0", "smt.nseq.regex_factorization_eager=false"],
"seq": ["smt.string_solver=seq"],
}