mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a08082e392
commit
9624df942f
|
@ -1579,8 +1579,10 @@ void theory_seq::add_length(expr* e, expr* l) {
|
||||||
Add length limit restrictions to sequence s.
|
Add length limit restrictions to sequence s.
|
||||||
*/
|
*/
|
||||||
void theory_seq::add_length_limit(expr* s, unsigned k, bool is_searching) {
|
void theory_seq::add_length_limit(expr* s, unsigned k, bool is_searching) {
|
||||||
|
#if 0
|
||||||
if (m_sk.is_skolem(s))
|
if (m_sk.is_skolem(s))
|
||||||
return;
|
return;
|
||||||
|
#endif
|
||||||
expr_ref lim_e = m_ax.add_length_limit(s, k);
|
expr_ref lim_e = m_ax.add_length_limit(s, k);
|
||||||
unsigned k0 = 0;
|
unsigned k0 = 0;
|
||||||
if (m_length_limit_map.find(s, k0)) {
|
if (m_length_limit_map.find(s, k0)) {
|
||||||
|
|
Loading…
Reference in a new issue