mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
merge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6807210c8b
commit
78b9f0686a
7 changed files with 6 additions and 101 deletions
|
@ -33,11 +33,6 @@ using namespace format_ns;
|
|||
|
||||
format * smt2_pp_environment::pp_fdecl_name(symbol const & s, unsigned & len, bool is_skolem) const {
|
||||
ast_manager & m = get_manager();
|
||||
#if 0
|
||||
symbol s1 = m_renaming.get_symbol(s, is_skolem);
|
||||
len = static_cast<unsigned>(strlen(s1.bare_str()));
|
||||
return mk_string(m, s1.bare_str());
|
||||
#else
|
||||
if (is_smt2_quoted_symbol(s)) {
|
||||
std::string str = mk_smt2_quoted_symbol(s);
|
||||
len = static_cast<unsigned>(str.length());
|
||||
|
@ -56,7 +51,6 @@ format * smt2_pp_environment::pp_fdecl_name(symbol const & s, unsigned & len, bo
|
|||
len = static_cast<unsigned>(strlen(s.bare_str()));
|
||||
return mk_string(m, s.bare_str());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
format * smt2_pp_environment::pp_fdecl_name(func_decl * f, unsigned & len) const {
|
||||
|
|
|
@ -5,7 +5,7 @@ Module Name:
|
|||
|
||||
pb2bv_rewriter.cpp
|
||||
|
||||
Abstralct:
|
||||
Abstract:
|
||||
|
||||
Conversion from pseudo-booleans to bit-vectors.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue