mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 03:57:51 +00:00
add bit-matrix, avoid flattening and/or after bit-blasting, split pdd_grobner into solver/simplifier, add xlin, add smtfd option for incremental mode logic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
09dbacdf50
commit
1d0572354b
17 changed files with 991 additions and 386 deletions
|
@ -217,6 +217,13 @@ namespace dd {
|
|||
g.display(std::cout);
|
||||
g.simplify();
|
||||
g.display(std::cout);
|
||||
if (use_mod2) {
|
||||
solver::config cfg;
|
||||
cfg.m_enable_exlin = true;
|
||||
g = cfg;
|
||||
g.simplify();
|
||||
g.display(std::cout << "after exlin\n");
|
||||
}
|
||||
g.saturate();
|
||||
g.display(std::cout);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue