3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-09 10:35:36 +00:00

Revert incorrect change to nlarith_util.cpp - local mk_or needs explicit size

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-03 18:40:35 +00:00
parent 9d53131b50
commit 682499fb44

View file

@ -344,7 +344,7 @@ namespace nlarith {
app* mk_or(expr* a, expr* b) {
expr* args[2] = { a, b };
return mk_or(args);
return mk_or(2, args);
}
void display_branching(
std::ostream& out, app* x,