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:
parent
9d53131b50
commit
682499fb44
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue