summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/theory/arith/proof_checker.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/theory/arith/proof_checker.cpp b/src/theory/arith/proof_checker.cpp
index 35c4a2e69..a28eb02df 100644
--- a/src/theory/arith/proof_checker.cpp
+++ b/src/theory/arith/proof_checker.cpp
@@ -33,8 +33,9 @@ void ArithProofRuleChecker::registerTo(ProofChecker* pc)
pc->registerChecker(PfRule::ARITH_TRICHOTOMY, this);
pc->registerChecker(PfRule::INT_TIGHT_UB, this);
pc->registerChecker(PfRule::INT_TIGHT_LB, this);
- pc->registerChecker(PfRule::INT_TRUST, this);
pc->registerChecker(PfRule::ARITH_OP_ELIM_AXIOM, this);
+ // trusted rules
+ pc->registerTrustedChecker(PfRule::INT_TRUST, this, 2);
}
Node ArithProofRuleChecker::checkInternal(PfRule id,
@@ -252,6 +253,20 @@ Node ArithProofRuleChecker::checkInternal(PfRule id,
}
case PfRule::INT_TRUST:
{
+ if (Debug.isOn("arith::pf::check::trust"))
+ {
+ Debug("arith::pf::check::trust") << "Arith PfRule:" << id << std::endl;
+ Debug("arith::pf::check::trust") << " children: " << std::endl;
+ for (const auto& c : children)
+ {
+ Debug("arith::pf::check::trust") << " * " << c << std::endl;
+ }
+ Debug("arith::pf::check::trust") << " args:" << std::endl;
+ for (const auto& c : args)
+ {
+ Debug("arith::pf::check::trust") << " * " << c << std::endl;
+ }
+ }
Assert(args.size() == 1);
return args[0];
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback