mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 03:57:51 +00:00
Performance improvements for seq-sls (#7519)
* Improve length repair * Fixed arguments * Special case regex membership with constant string * Trying hybrid eq-repair strategy * Different heuristic * Fixed stoi
This commit is contained in:
parent
3cdcd831b1
commit
1553bae20c
6 changed files with 118 additions and 36 deletions
|
@ -72,7 +72,7 @@ namespace sls {
|
|||
register_plugin(alloc(array_plugin, *this));
|
||||
else if (fid == datatype_util(m).get_family_id())
|
||||
register_plugin(alloc(datatype_plugin, *this));
|
||||
else if (fid == seq_util(m).get_family_id())
|
||||
else if (fid == seq_util(m).get_family_id() || fid == seq_util(m).get_char_family_id())
|
||||
register_plugin(alloc(seq_plugin, *this));
|
||||
else {
|
||||
verbose_stream() << "did not find plugin for " << fid << "\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue