3
0
Fork 0
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:
Nikolaj Bjorner 2025-01-03 10:56:15 -08:00
parent bfcd75595e
commit 5a57636cd8
5 changed files with 69 additions and 7 deletions

View file

@ -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;
}