3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-18 01:02:15 +00:00

disable uhle from lookahead solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-02-01 19:56:01 -08:00
parent 75bf942237
commit eca250933d
12 changed files with 213 additions and 96 deletions

View file

@ -21,9 +21,8 @@ Revision History:
namespace sat {
big::big(random_gen& rand, bool binary):
big::big(random_gen& rand):
m_rand(rand) {
m_binary = binary;
}
void big::init(solver& s, bool learned) {
@ -141,7 +140,6 @@ namespace sat {
}
unsigned big::reduce_tr(solver& s) {
if (!m_binary && learned()) return 0;
unsigned num_lits = s.num_vars() * 2;
unsigned idx = 0;
unsigned elim = 0;