3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 09:40:20 +00:00

add CMS xor extension to dimacs front-end

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-10-29 11:32:39 -07:00
parent 5f45469d9b
commit b651e57ca2
7 changed files with 31 additions and 34 deletions

View file

@ -339,6 +339,12 @@ namespace sat {
}
void solver::mk_xor_clause(sat::literal_vector const& lits) {
SASSERT(m_ext);
m_ext->add_xor(lits);
}
clause* solver::mk_clause(unsigned num_lits, literal * lits, sat::status st) {
m_model_is_current = false;