mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
disable validate_hint too permissive
This commit is contained in:
parent
2f8b13368d
commit
912b284602
|
@ -459,7 +459,7 @@ static void verify_smt(char const* drat_file, char const* smt_file) {
|
||||||
std::cout.flush();
|
std::cout.flush();
|
||||||
switch (r.m_tag) {
|
switch (r.m_tag) {
|
||||||
case dimacs::drat_record::tag_t::is_clause: {
|
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);
|
checker.add(r.m_lits, r.m_status, validated);
|
||||||
if (drat_checker.inconsistent()) {
|
if (drat_checker.inconsistent()) {
|
||||||
std::cout << "inconsistent\n";
|
std::cout << "inconsistent\n";
|
||||||
|
|
Loading…
Reference in a new issue