3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-28 22:18:56 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-07-14 15:38:56 -07:00
parent 8357ac1cfc
commit 586343ce64
24 changed files with 708 additions and 513 deletions

View file

@ -84,7 +84,7 @@ namespace sls {
return true;
}
lbool cc_plugin::check() {
bool cc_plugin::propagate() {
bool new_constraint = false;
for (auto & [f, ts] : m_app) {
if (ts.size() <= 1)
@ -108,7 +108,7 @@ namespace sls {
m_values.insert(t);
}
}
return new_constraint ? l_undef : l_true;
return new_constraint;
}
std::ostream& cc_plugin::display(std::ostream& out) const {