mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix build errors on gcc
Signed-off-by: Nikolaj Bjorner <nbjorner@z3-mac.local>
This commit is contained in:
parent
4bb5302def
commit
82f1e81ac2
1 changed files with 2 additions and 2 deletions
|
@ -417,7 +417,7 @@ namespace smt {
|
|||
template<typename Ext>
|
||||
void theory_arith<Ext>::atom::display(theory_arith<Ext> const& th, std::ostream& out) const {
|
||||
literal l(get_bool_var(), !m_is_true);
|
||||
out << "v" << get_var() << " " << get_bound_kind() << " " << get_k() << " ";
|
||||
out << "v" << bound::get_var() << " " << bound::get_bound_kind() << " " << get_k() << " ";
|
||||
out << l << ":";
|
||||
th.get_context().display_detailed_literal(out, l);
|
||||
}
|
||||
|
@ -747,7 +747,7 @@ namespace smt {
|
|||
|
||||
template<typename Ext>
|
||||
void theory_arith<Ext>::derived_bound::display(theory_arith<Ext> const& th, std::ostream& out) const {
|
||||
out << "v" << m_var << " " << get_bound_kind() << " " << get_value();
|
||||
out << "v" << bound::get_var() << " " << bound::get_bound_kind() << " " << bound::get_value();
|
||||
|
||||
ast_manager& m = th.get_manager();
|
||||
for (unsigned i = 0; i < m_eqs.size(); ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue