3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-11 10:18:06 +00:00

updated sat state

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-05-17 16:45:12 -07:00
parent 1e143971c3
commit dfeb4b5235
2 changed files with 2 additions and 6 deletions

View file

@ -530,7 +530,6 @@ namespace sat {
}
void solver::defrag_clauses() {
return;
if (memory_pressure()) return;
pop(scope_lvl());
IF_VERBOSE(1, verbose_stream() << "(sat-defrag)\n");
@ -802,9 +801,9 @@ namespace sat {
if (m_config.m_propagate_prefetch) {
#if defined(__GLUC__) || defined(__clang__)
__builtin_prefetch((const char*)(&*(m_watches[l.index()].c_ptr())));
__builtin_prefetch((const char*)((m_watches[l.index()].c_ptr())));
#else
_mm_prefetch((const char*)(&*(m_watches[l.index()].c_ptr())), _MM_HINT_T1);
_mm_prefetch((const char*)((m_watches[l.index()].c_ptr())), _MM_HINT_T1);
#endif
}