3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

Ignore min aggregation functions in compiler for now

Signed-off-by: Alex Horn <t-alexh@microsoft.com>
This commit is contained in:
Alex Horn 2015-06-10 20:06:09 +01:00
parent e6ffa5d2a5
commit 9b7c5658c8

View file

@ -597,7 +597,8 @@ namespace datalog {
unsigned ft_len = r->get_tail_size(); // full tail
ptr_vector<expr> tail;
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);