mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 22:35:45 +00:00
add array selects to basic ackerman reduction improves performance significantly for #2525 as it now uses the SAT solver core instead of SMT core
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7823117776
commit
000e485794
25 changed files with 706 additions and 572 deletions
|
@ -1940,6 +1940,14 @@ public:
|
|||
return mk_const(mk_fresh_func_decl(prefix, 0, nullptr, s, skolem));
|
||||
}
|
||||
|
||||
app * mk_fresh_const(std::string const& prefix, sort * s, bool skolem = true) {
|
||||
return mk_fresh_const(prefix.c_str(), s, skolem);
|
||||
}
|
||||
|
||||
app * mk_fresh_const(symbol const& prefix, sort * s, bool skolem = true) {
|
||||
return mk_fresh_const(prefix.str().c_str(), s, skolem);
|
||||
}
|
||||
|
||||
symbol mk_fresh_var_name(char const * prefix = nullptr);
|
||||
|
||||
var * mk_var(unsigned idx, sort * ty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue