mirror of
https://github.com/Z3Prover/z3
synced 2026-07-04 14:26:10 +00:00
Fix reference to recfun::util in lia2card_tactic.cpp
This commit is contained in:
parent
7292d2f9de
commit
904966b648
1 changed files with 2 additions and 1 deletions
|
|
@ -20,6 +20,7 @@ Notes:
|
||||||
#include "ast/ast_ll_pp.h"
|
#include "ast/ast_ll_pp.h"
|
||||||
#include "ast/pb_decl_plugin.h"
|
#include "ast/pb_decl_plugin.h"
|
||||||
#include "ast/arith_decl_plugin.h"
|
#include "ast/arith_decl_plugin.h"
|
||||||
|
#include "ast/recfun_decl_plugin.h"
|
||||||
#include "ast/rewriter/rewriter_def.h"
|
#include "ast/rewriter/rewriter_def.h"
|
||||||
#include "ast/rewriter/expr_safe_replace.h"
|
#include "ast/rewriter/expr_safe_replace.h"
|
||||||
#include "ast/ast_util.h"
|
#include "ast/ast_util.h"
|
||||||
|
|
@ -185,7 +186,7 @@ public:
|
||||||
expr_safe_replace rep(m);
|
expr_safe_replace rep(m);
|
||||||
|
|
||||||
tactic_report report("lia2card", *g);
|
tactic_report report("lia2card", *g);
|
||||||
if (recfun::util(m()).has_rec_defs()) {
|
if (recfun::util(m).has_rec_defs()) {
|
||||||
result.push_back(g.get());
|
result.push_back(g.get());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue