3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-29 09:28:45 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-14 04:26:59 -07:00
parent c4a03dcf7c
commit c0a07f9229
3 changed files with 46 additions and 60 deletions

View file

@ -487,9 +487,9 @@ public:
seq_util::re& re;
expr* e;
bool can_skip_parenth(expr* r) const;
void seq_unit(std::ostream& out, expr* s) const;
void compact_helper_seq(std::ostream& out, expr* s) const;
void compact_helper_range(std::ostream& out, expr* s1, expr* s2) const;
std::ostream& seq_unit(std::ostream& out, expr* s) const;
std::ostream& compact_helper_seq(std::ostream& out, expr* s) const;
std::ostream& compact_helper_range(std::ostream& out, expr* s1, expr* s2) const;
public:
pp(seq_util::re& r, expr* e) : re(r), e(e) {}