mirror of
https://github.com/Z3Prover/z3
synced 2026-05-06 10:25:17 +00:00
fix inverted logic of is-linear, #9311
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
87e45accd9
commit
c6b595d981
1 changed files with 1 additions and 1 deletions
|
|
@ -321,7 +321,7 @@ namespace euf {
|
|||
if (!is_app(t))
|
||||
return false;
|
||||
for (auto arg : *to_app(t))
|
||||
num_values += m.is_value(arg) ? 1 : 0;
|
||||
num_values += m.is_value(arg) ? 0 : 1;
|
||||
return num_values <= 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue