Skip to content

Commit

Permalink
disable validate_hint too permissive
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Aug 24, 2022
1 parent 2f8b133 commit 912b284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shell/drat_frontend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static void verify_smt(char const* drat_file, char const* smt_file) {
std::cout.flush();
switch (r.m_tag) {
case dimacs::drat_record::tag_t::is_clause: {
bool validated = checker.validate_hint(exprs, r.m_lits, r.m_hint);
bool validated = false && checker.validate_hint(exprs, r.m_lits, r.m_hint);
checker.add(r.m_lits, r.m_status, validated);
if (drat_checker.inconsistent()) {
std::cout << "inconsistent\n";
Expand Down

0 comments on commit 912b284

Please sign in to comment.