mirror of
https://github.com/Z3Prover/z3
synced 2026-03-17 18:43:45 +00:00
Modern C++: Add std::span overload for mk_or, adopt std::clamp, optimize stream output (#8507)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
384a8e291b
commit
bb35267e46
10 changed files with 19 additions and 20 deletions
|
|
@ -284,14 +284,14 @@ namespace euf {
|
|||
out << " " << c.m_label->get_name() << " " << c.m_oreg;
|
||||
for (unsigned i = 0; i < c.m_num_args; ++i)
|
||||
out << " " << c.m_iregs[i];
|
||||
out << ")";
|
||||
out << ')';
|
||||
}
|
||||
|
||||
void display_is_cgr(std::ostream & out, const is_cgr & c) {
|
||||
out << "(IS_CGR " << c.m_label->get_name() << " " << c.m_ireg;
|
||||
for (unsigned i = 0; i < c.m_num_args; ++i)
|
||||
out << " " << c.m_iregs[i];
|
||||
out << ")";
|
||||
out << ')';
|
||||
}
|
||||
|
||||
void display_yield(std::ostream & out, const yield & y) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue