mirror of
https://github.com/Z3Prover/z3
synced 2026-02-19 23:14:40 +00:00
test
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a1b831a3e1
commit
f2260d959d
2 changed files with 24 additions and 6 deletions
|
|
@ -30,6 +30,7 @@ Notes:
|
|||
#include "ast/rewriter/pb_rewriter.h"
|
||||
#include "ast/rewriter/recfun_rewriter.h"
|
||||
#include "ast/rewriter/seq_rewriter.h"
|
||||
#include "ast/rewriter/finite_set_rewriter.h"
|
||||
#include "ast/rewriter/rewriter_def.h"
|
||||
#include "ast/rewriter/var_subst.h"
|
||||
#include "ast/rewriter/der.h"
|
||||
|
|
@ -55,6 +56,7 @@ struct th_rewriter_cfg : public default_rewriter_cfg {
|
|||
seq_rewriter m_seq_rw;
|
||||
char_rewriter m_char_rw;
|
||||
recfun_rewriter m_rec_rw;
|
||||
finite_set_rewriter m_fs_rw;
|
||||
arith_util m_a_util;
|
||||
bv_util m_bv_util;
|
||||
der m_der;
|
||||
|
|
@ -229,6 +231,8 @@ struct th_rewriter_cfg : public default_rewriter_cfg {
|
|||
return m_char_rw.mk_app_core(f, num, args, result);
|
||||
if (fid == m_rec_rw.get_fid())
|
||||
return m_rec_rw.mk_app_core(f, num, args, result);
|
||||
if (fid == m_fs_rw.get_fid())
|
||||
return m_fs_rw.mk_app_core(f, num, args, result);
|
||||
return BR_FAILED;
|
||||
}
|
||||
|
||||
|
|
@ -882,7 +886,8 @@ struct th_rewriter_cfg : public default_rewriter_cfg {
|
|||
m_pb_rw(m),
|
||||
m_seq_rw(m, p),
|
||||
m_char_rw(m),
|
||||
m_rec_rw(m),
|
||||
m_rec_rw(m),
|
||||
m_fs_rw(m),
|
||||
m_a_util(m),
|
||||
m_bv_util(m),
|
||||
m_der(m),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue