3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-06 01:48:02 +00:00

profile, optimize, trying out product-set

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-08-23 20:51:30 -07:00
parent 9b893c625b
commit 54c959783d
7 changed files with 748 additions and 48 deletions

View file

@ -42,8 +42,6 @@ namespace datalog {
union_find_default_ctx m_ctx;
union_find<>* m_eqs;
friend class vector_relation_plugin;
public:
vector_relation(relation_plugin& p, relation_signature const& s, bool is_empty, T const& t = T()):
relation_base(p, s),
@ -107,9 +105,10 @@ namespace datalog {
display_index(i, (*m_elems)[i], out);
}
else {
out << i << " = " << find(i) << "\n";
out << i << " = " << find(i) << " ";
}
}
out << "\n";
}