mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Ignore min aggregation functions in compiler for now
Signed-off-by: Alex Horn <t-alexh@microsoft.com>
This commit is contained in:
parent
e6ffa5d2a5
commit
9b7c5658c8
|
@ -597,7 +597,8 @@ namespace datalog {
|
||||||
unsigned ft_len = r->get_tail_size(); // full tail
|
unsigned ft_len = r->get_tail_size(); // full tail
|
||||||
ptr_vector<expr> tail;
|
ptr_vector<expr> tail;
|
||||||
for (unsigned tail_index = ut_len; tail_index < ft_len; ++tail_index) {
|
for (unsigned tail_index = ut_len; tail_index < ft_len; ++tail_index) {
|
||||||
tail.push_back(r->get_tail(tail_index));
|
if (!r->is_min_tail(tail_index))
|
||||||
|
tail.push_back(r->get_tail(tail_index));
|
||||||
}
|
}
|
||||||
|
|
||||||
expr_ref_vector binding(m);
|
expr_ref_vector binding(m);
|
||||||
|
|
Loading…
Reference in a new issue