mirror of
https://github.com/Z3Prover/z3
synced 2025-08-28 22:18:56 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8357ac1cfc
commit
586343ce64
24 changed files with 708 additions and 513 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue