mirror of
https://github.com/Z3Prover/z3
synced 2025-10-12 18:50:17 +00:00
fix format bug (issue 126) and smaller nits in sat solver (const annotation, disable elimination of external or already elimianted variables)
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fbb01f3699
commit
6a3f75822d
12 changed files with 22 additions and 17 deletions
|
@ -459,9 +459,6 @@ namespace sat {
|
|||
void solver::set_conflict(justification c, literal not_l) {
|
||||
if (m_inconsistent)
|
||||
return;
|
||||
TRACE("sat_conflict", tout << "conflict\n";);
|
||||
// int * p = 0;
|
||||
// *p = 0;
|
||||
m_inconsistent = true;
|
||||
m_conflict = c;
|
||||
m_not_l = not_l;
|
||||
|
@ -863,6 +860,7 @@ namespace sat {
|
|||
m_next_simplify = 0;
|
||||
m_stopwatch.reset();
|
||||
m_stopwatch.start();
|
||||
TRACE("sat", display(tout););
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue