3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

DoC: fix slow path of filter_by_negation when columns are repeated in tgt relation

Signed-off-by: Nuno Lopes <a-nlopes@microsoft.com>
This commit is contained in:
Nuno Lopes 2014-10-02 09:56:06 +01:00
parent bb15ddbf15
commit 9828b26379
3 changed files with 53 additions and 8 deletions

View file

@ -661,7 +661,7 @@ namespace datalog {
expr_ref_vector eqs(m);
dst.to_formula(dstf);
std::cout << mk_pp(dstf, m) << "\n";
dst.to_formula(negf);
neg.to_formula(negf);
std::cout << mk_pp(negf, m) << "\n";
eqs.push_back(negf);
for (unsigned i = 0; i < cols1.size(); ++i) {