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:
parent
2d0ff7d68a
commit
f99384c6a3
4 changed files with 7 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue