mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 18:36:41 +00:00
disable UHLT
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9ff724ec6d
commit
6d729f1f15
1 changed files with 2 additions and 1 deletions
|
@ -208,7 +208,6 @@ namespace sat {
|
||||||
m_to_delete.reset();
|
m_to_delete.reset();
|
||||||
for (unsigned i = m_pos.size() - 1; i-- > 0; ) {
|
for (unsigned i = m_pos.size() - 1; i-- > 0; ) {
|
||||||
literal lit = m_pos[i];
|
literal lit = m_pos[i];
|
||||||
SASSERT(scc.get_left(lit) < scc.get_left(last));
|
|
||||||
int right2 = scc.get_right(lit);
|
int right2 = scc.get_right(lit);
|
||||||
if (right2 > right) {
|
if (right2 > right) {
|
||||||
// lit => last, so lit can be deleted
|
// lit => last, so lit can be deleted
|
||||||
|
@ -345,10 +344,12 @@ namespace sat {
|
||||||
bool asymm_branch::process_sampled(scc& scc, clause & c) {
|
bool asymm_branch::process_sampled(scc& scc, clause & c) {
|
||||||
scoped_detach scoped_d(s, c);
|
scoped_detach scoped_d(s, c);
|
||||||
sort(scc, c);
|
sort(scc, c);
|
||||||
|
#if 0
|
||||||
if (uhte(scc, c)) {
|
if (uhte(scc, c)) {
|
||||||
scoped_d.del_clause();
|
scoped_d.del_clause();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return uhle(scoped_d, scc, c);
|
return uhle(scoped_d, scc, c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue