3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-18 05:04:45 +00:00

add char_decl_plugin

This commit is contained in:
Nikolaj Bjorner 2021-01-26 16:43:03 -08:00
parent 20332c6d3e
commit 32058d9c68
6 changed files with 241 additions and 11 deletions

View file

@ -19,7 +19,7 @@ Author:
#include "ast/seq_decl_plugin.h"
#include "ast/bv_decl_plugin.h"
#include "ast/rewriter/bit_blaster/bit_blaster.h"
#include "model/seq_factory.h"
#include "model/char_factory.h"
#include "smt/smt_theory.h"
namespace smt {
@ -43,7 +43,7 @@ namespace smt {
bit_blaster m_bb;
stats m_stats;
symbol m_bits2char;
seq_factory* m_factory { nullptr };
char_factory* m_factory { nullptr };
struct reset_bits;