mirror of
https://github.com/Z3Prover/z3
synced 2025-06-18 20:03:38 +00:00
correctly pretty-print
This commit is contained in:
parent
a147e2bc35
commit
44c417904b
1 changed files with 2 additions and 1 deletions
|
@ -26,6 +26,7 @@ Revision History:
|
||||||
#include "var_subst.h"
|
#include "var_subst.h"
|
||||||
#include "ast_util.h"
|
#include "ast_util.h"
|
||||||
#include "obj_pair_hashtable.h"
|
#include "obj_pair_hashtable.h"
|
||||||
|
#include "ast_pp.h"
|
||||||
|
|
||||||
class sine_tactic : public tactic {
|
class sine_tactic : public tactic {
|
||||||
|
|
||||||
|
@ -121,7 +122,7 @@ private:
|
||||||
app *a = to_app(curr);
|
app *a = to_app(curr);
|
||||||
func_decl *f = a->get_decl();
|
func_decl *f = a->get_decl();
|
||||||
if (!consts.contains(f)) {
|
if (!consts.contains(f)) {
|
||||||
TRACE("sine", tout << f; tout << "\n";);
|
TRACE("sine", tout << mk_pp(f, m) << "\n";);
|
||||||
p_matched = false;
|
p_matched = false;
|
||||||
next_consts.push_back(f);
|
next_consts.push_back(f);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue