mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
use native sdiv
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bfcd75595e
commit
5a57636cd8
5 changed files with 69 additions and 7 deletions
|
@ -369,3 +369,8 @@ inline std::ostream& operator<<(std::ostream& out, indexed_uint_set const& s) {
|
|||
for (unsigned i : s) out << i << " ";
|
||||
return out;
|
||||
}
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, tracked_uint_set const& s) {
|
||||
for (unsigned i : s) out << i << " ";
|
||||
return out;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue