mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
enable logging nla lemmas
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2a4f0e785b
commit
bebcd94703
5 changed files with 37 additions and 0 deletions
|
@ -3863,6 +3863,10 @@ namespace nlsat {
|
|||
return out;
|
||||
}
|
||||
|
||||
std::ostream& solver::display_smt2(std::ostream & out) const {
|
||||
return m_imp->display_smt2(out);
|
||||
}
|
||||
|
||||
std::ostream& solver::display_smt2(std::ostream & out, literal_vector const& ls) const {
|
||||
return display_smt2(out, ls.size(), ls.data());
|
||||
}
|
||||
|
|
|
@ -254,6 +254,8 @@ namespace nlsat {
|
|||
|
||||
std::ostream& display_smt2(std::ostream & out, literal_vector const& ls) const;
|
||||
|
||||
std::ostream& display_smt2(std::ostream & out) const;
|
||||
|
||||
|
||||
/**
|
||||
\brief Display variable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue