mirror of
https://github.com/Z3Prover/z3
synced 2025-10-09 09:21:56 +00:00
update comments
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8073c93237
commit
3fd8d2cd8c
1 changed files with 2 additions and 3 deletions
|
@ -52,7 +52,6 @@ namespace search_tree {
|
||||||
status get_status() const { return m_status; }
|
status get_status() const { return m_status; }
|
||||||
void set_status(status s) { m_status = s; }
|
void set_status(status s) { m_status = s; }
|
||||||
literal const& get_literal() const { return m_literal; }
|
literal const& get_literal() const { return m_literal; }
|
||||||
void set_literal(literal const& l) { m_literal = l; }
|
|
||||||
bool literal_is_null() const { return Config::is_null(m_literal); }
|
bool literal_is_null() const { return Config::is_null(m_literal); }
|
||||||
void split(literal const& a, literal const& b) {
|
void split(literal const& a, literal const& b) {
|
||||||
if (m_status != status::active)
|
if (m_status != status::active)
|
||||||
|
@ -146,8 +145,8 @@ namespace search_tree {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// conflict is given by a set of atoms.
|
// conflict is given by a set of literals.
|
||||||
// they are a subset of atoms on the path from root to n
|
// they are a subset of literals on the path from root to n
|
||||||
void backtrack(node<Config>* n, vector<literal> const& conflict) {
|
void backtrack(node<Config>* n, vector<literal> const& conflict) {
|
||||||
if (conflict.empty()) {
|
if (conflict.empty()) {
|
||||||
close_node(m_root.get());
|
close_node(m_root.get());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue