#include <stdbool.h>
#include "global.h"
Go to the source code of this file.
◆ kissat_probing_propagate()
Definition at line 37 of file proprobe.c.
38 {
42
44
46 unsigned *propagate =
solver->propagate;
49 const unsigned lit = *propagate++;
50 conflict = probing_propagate_literal (
solver, ignore,
lit);
51 }
52
53 const unsigned propagated = propagate -
solver->propagate;
54 solver->propagate = propagate;
55 update_probing_propagation_statistics (
solver, propagated);
56 kissat_update_conflicts_and_trail (
solver, conflict, flush);
57
59
60 return conflict;
61}
#define KISSAT_assert(ignore)