mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
working on DL opt
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fe61492d5d
commit
80ba830091
5 changed files with 48 additions and 48 deletions
|
@ -38,5 +38,6 @@ std::string mpq_inf_manager<SYNCH>::to_string(mpq_inf const & a) {
|
|||
return s;
|
||||
}
|
||||
|
||||
|
||||
template class mpq_inf_manager<true>;
|
||||
template class mpq_inf_manager<false>;
|
||||
|
|
|
@ -271,6 +271,11 @@ public:
|
|||
}
|
||||
|
||||
std::string to_string(mpq_inf const & a);
|
||||
|
||||
void display(std::ostream & out, mpq_inf const & a) {
|
||||
out << to_string(a);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
typedef mpq_inf_manager<true> synch_mpq_inf_manager;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue