3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-29 09:28:45 +00:00

some adjustments for stack use on large strings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-01-12 22:08:24 -08:00
parent e8cfbb41d3
commit ab5905cf7f
4 changed files with 47 additions and 25 deletions

View file

@ -22,6 +22,7 @@ Revision History:
#define SEQ_DECL_PLUGIN_H_
#include "ast/ast.h"
#include "ast/bv_decl_plugin.h"
enum seq_sort_kind {
@ -216,6 +217,8 @@ class seq_util {
ast_manager& m;
seq_decl_plugin& seq;
family_id m_fid;
mutable scoped_ptr<bv_util> m_bv;
bv_util& bv() const;
public:
ast_manager& get_manager() const { return m; }