mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 05:13:39 +00:00
tuning sls
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
25ad9d2ee1
commit
f1ebf2002a
3 changed files with 5 additions and 2 deletions
|
@ -29,7 +29,7 @@ using namespace stl_ext;
|
||||||
|
|
||||||
namespace Duality {
|
namespace Duality {
|
||||||
|
|
||||||
class implicant_solver;
|
struct implicant_solver;
|
||||||
|
|
||||||
/* Generic operations on Z3 formulas */
|
/* Generic operations on Z3 formulas */
|
||||||
|
|
||||||
|
|
|
@ -2201,7 +2201,7 @@ namespace Duality {
|
||||||
#endif
|
#endif
|
||||||
int expand_max = 1;
|
int expand_max = 1;
|
||||||
if(0&&duality->BatchExpand){
|
if(0&&duality->BatchExpand){
|
||||||
int thing = stack.size() * 0.1;
|
int thing = static_cast<int>(stack.size() * 0.1);
|
||||||
expand_max = std::max(1,thing);
|
expand_max = std::max(1,thing);
|
||||||
if(expand_max > 1)
|
if(expand_max > 1)
|
||||||
std::cout << "foo!\n";
|
std::cout << "foo!\n";
|
||||||
|
|
|
@ -622,6 +622,9 @@ namespace smt {
|
||||||
m_clauses.push_back(cls);
|
m_clauses.push_back(cls);
|
||||||
m_orig_clauses.push_back(f);
|
m_orig_clauses.push_back(f);
|
||||||
return result;
|
return result;
|
||||||
|
}
|
||||||
|
if (pb.is_ge(f)) {
|
||||||
|
|
||||||
}
|
}
|
||||||
IF_VERBOSE(0, verbose_stream() << "not handled: " << mk_pp(f, m) << "\n";);
|
IF_VERBOSE(0, verbose_stream() << "not handled: " << mk_pp(f, m) << "\n";);
|
||||||
return mk_aux_literal(f);
|
return mk_aux_literal(f);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue