3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-26 13:53:33 +00:00

separate egraph functionality

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-12-22 15:57:28 -08:00
parent d183ac23d0
commit 8eea2488e2
9 changed files with 195 additions and 90 deletions

View file

@ -389,11 +389,11 @@ namespace polysat {
}
}
void core::get_bitvector_suffixes(pvar v, pvar_vector& out) {
void core::get_bitvector_suffixes(pvar v, justified_slices& out) {
s.get_bitvector_suffixes(v, out);
}
void core::get_fixed_bits(pvar v, svector<justified_fixed_bits>& fixed_bits) {
void core::get_fixed_bits(pvar v, justified_fixed_bits& fixed_bits) {
s.get_fixed_bits(v, fixed_bits);
}