mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
working on adding basic cores to efficient SAT solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
96dc933c99
commit
e98acf4ece
8 changed files with 203 additions and 30 deletions
|
@ -90,8 +90,9 @@ struct collect_boolean_interface_proc {
|
|||
template<typename T>
|
||||
void operator()(T const & g) {
|
||||
unsigned sz = g.size();
|
||||
for (unsigned i = 0; i < sz; i++)
|
||||
for (unsigned i = 0; i < sz; i++) {
|
||||
process(g.form(i));
|
||||
}
|
||||
}
|
||||
|
||||
void operator()(unsigned sz, expr * const * fs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue