3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

fix nightly regression from solve-eqs context solver addition

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-05-27 04:17:43 -07:00
parent 2d0ff7d68a
commit f99384c6a3
4 changed files with 7 additions and 3 deletions

View file

@ -18,6 +18,7 @@ Revision History:
--*/
#include "math/grobner/grobner.h"
#include "ast/ast_pp.h"
#include "ast/ast_ll_pp.h"
#include "util/ref_util.h"
// #define PROFILE_GB
@ -121,7 +122,7 @@ void grobner::reset() {
void grobner::display_var(std::ostream & out, expr * var) const {
if (is_app(var) && to_app(var)->get_num_args() > 0)
out << "#" << var->get_id();
out << mk_bounded_pp(var, m_manager);
else
out << mk_pp(var, m_manager);
}