3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-15 19:54:44 +00:00

fix dotnet build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-26 09:44:21 -08:00
parent 915ff38f97
commit 833b54a12c
3 changed files with 5 additions and 1 deletions

View file

@ -32,10 +32,12 @@ namespace smt {
bool context::check_clause(clause const * cls) const {
SASSERT(is_watching_clause(~cls->get_literal(0), cls));
SASSERT(is_watching_clause(~cls->get_literal(1), cls));
#if 0
for (literal l : *cls) {
// holds, TBD re-enable when ready to re-check
// SASSERT(!track_occs() || m_lit_occs[l.index()] > 0);
}
#endif
return true;
}