3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-05 14:55:45 +00:00
z3/src/math/polysat/clause.cpp
2021-09-20 15:10:03 -07:00

57 lines
1.4 KiB
C++

/*++
Copyright (c) 2021 Microsoft Corporation
Module Name:
polysat clauses
Author:
Nikolaj Bjorner (nbjorner) 2021-03-19
Jakob Rath 2021-04-6
--*/
#include "math/polysat/clause.h"
#include "math/polysat/solver.h"
namespace polysat {
clause_ref clause::from_unit(signed_constraint c) {
SASSERT(c->has_bvar());
sat::literal_vector lits;
lits.push_back(c.blit());
return clause::from_literals(std::move(lits));
}
clause_ref clause::from_literals(sat::literal_vector literals) {
return alloc(clause, std::move(literals));
}
bool clause::is_always_false(solver& s) const {
return std::all_of(m_literals.begin(), m_literals.end(), [&s](sat::literal lit) {
signed_constraint c = s.m_constraints.lookup(lit);
return c.is_always_false();
});
}
bool clause::is_currently_false(solver& s) const {
return std::all_of(m_literals.begin(), m_literals.end(), [&s](sat::literal lit) {
signed_constraint c = s.m_constraints.lookup(lit);
return c.is_currently_false(s);
});
}
std::ostream& clause::display(std::ostream& out) const {
bool first = true;
for (auto lit : *this) {
if (first)
first = false;
else
out << " \\/ ";
out << lit;
}
return out;
}
}