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

misc bugfixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-12-28 14:24:52 -08:00
parent c0da732cea
commit 20afc55b41
12 changed files with 149 additions and 147 deletions

View file

@ -37,6 +37,9 @@ namespace polysat {
public:
fixed_bits(core& c) : c(c) {}
// reset without variable reference.
void reset();
// reset with fixed bits information for variable v
void reset(pvar v);
@ -45,5 +48,7 @@ namespace polysat {
// explain the fixed bits ranges.
dependency_vector explain();
std::ostream& display(std::ostream& out) const;
};
}